comparison src/haptic/SDL_syshaptic.h @ 2646:9408be170bff gsoc2008_force_feedback

Added SDL_HapticStopAll. Cleaned up the dummy haptic driver a bit.
author Edgar Simo <bobbens@gmail.com>
date Sun, 24 Aug 2008 17:32:50 +0000
parents 269ba4f28d0e
children
comparison
equal deleted inserted replaced
2645:269ba4f28d0e 2646:9408be170bff
192 * 192 *
193 * Returns 0 on success, -1 on error. 193 * Returns 0 on success, -1 on error.
194 */ 194 */
195 extern int SDL_SYS_HapticUnpause(SDL_Haptic * haptic); 195 extern int SDL_SYS_HapticUnpause(SDL_Haptic * haptic);
196 196
197 /*
198 * Stops all the currently playing haptic effects on the device.
199 *
200 * Returns 0 on success, -1 on error.
201 */
202 extern int SDL_SYS_HapticStopAll(SDL_Haptic * haptic);
203