Mercurial > sdl-ios-xcode
comparison src/haptic/linux/SDL_syshaptic.c @ 2645:269ba4f28d0e gsoc2008_force_feedback
Added support for pausing/unpausing haptic devices.
author | Edgar Simo <bobbens@gmail.com> |
---|---|
date | Sun, 24 Aug 2008 17:17:45 +0000 |
parents | ef0ba67154c1 |
children | 9408be170bff |
comparison
equal
deleted
inserted
replaced
2644:ef0ba67154c1 | 2645:269ba4f28d0e |
---|---|
888 | 888 |
889 return 0; | 889 return 0; |
890 } | 890 } |
891 | 891 |
892 | 892 |
893 /* | |
894 * Pausing is not supported atm by linux. | |
895 */ | |
896 int | |
897 SDL_SYS_HapticPause(SDL_Haptic * haptic) | |
898 { | |
899 return -1; | |
900 } | |
901 | |
902 | |
903 /* | |
904 * Unpausing is not supported atm by linux. | |
905 */ | |
906 int | |
907 SDL_SYS_HapticUnpause(SDL_Haptic * haptic) | |
908 { | |
909 return -1; | |
910 } | |
911 | |
912 | |
893 #endif /* SDL_HAPTIC_LINUX */ | 913 #endif /* SDL_HAPTIC_LINUX */ |