Mercurial > sdl-ios-xcode
diff src/haptic/SDL_syshaptic.h @ 2475:4b874e3a3a2c gsoc2008_force_feedback
Some code cleanup.
author | Edgar Simo <bobbens@gmail.com> |
---|---|
date | Sun, 01 Jun 2008 19:11:49 +0000 |
parents | 3f73c88c9abb |
children | 97f75ea43a93 |
line wrap: on
line diff
--- a/src/haptic/SDL_syshaptic.h Sun Jun 01 18:46:51 2008 +0000 +++ b/src/haptic/SDL_syshaptic.h Sun Jun 01 19:11:49 2008 +0000 @@ -27,8 +27,8 @@ struct _SDL_Haptic { - Uint8 index; - const char* name; + Uint8 index; /* stores index it is attached to */ + const char* name; /* stores the name of the device */ int neffects; /* maximum amount of effects */ unsigned int supported; /* supported effects */ @@ -39,6 +39,8 @@ extern int SDL_SYS_HapticInit(void); +extern const char * SDL_SYS_HapticName(int index); +extern int SDL_SYS_HapticOpen(SDL_Haptic * haptic); +extern void SDL_SYS_HapticClose(SDL_Haptic * haptic); +extern void SDL_SYS_HapticQuit(void); -extern const char * SDL_SYS_HapticName(int index); -