-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added idempotent preserving ifdefs for rumble.h, changed some
functions that took () to take (void) insteadh.
- Loading branch information
smcameron
committed
Apr 10, 2009
1 parent
6984d58
commit 678d2b7
Showing
2 changed files
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#ifndef __RUMBLE_H__ | ||
#define __RUMBLE_H__ | ||
|
||
/* | ||
* Copyright 2008 Stephen M. Cameron <[email protected]> | ||
|
@@ -29,8 +31,9 @@ | |
#define RUMBLE_STRONG_RUMBLE_EFFECT 4 | ||
#define RUMBLE_WEAK_RUMBLE_EFFECT 5 | ||
|
||
extern int stop_all_rumble_effects(); | ||
extern int stop_all_rumble_effects(void); | ||
extern int play_rumble_effect(int effect); | ||
extern void close_rumble_fd(); | ||
extern void close_rumble_fd(void); | ||
extern int get_ready_to_rumble(char *filename); | ||
|
||
#endif |