Mercurial > sdl-ios-xcode
diff include/SDL_haptic.h @ 2506:ba8e99fe92c1 gsoc2008_force_feedback
Added SDL_HapticOpened().
author | Edgar Simo <bobbens@gmail.com> |
---|---|
date | Tue, 08 Jul 2008 19:35:10 +0000 |
parents | abfcba0f3bd1 |
children | 8ef1d0f4d0c1 |
line wrap: on
line diff
--- a/include/SDL_haptic.h Tue Jul 08 19:23:03 2008 +0000 +++ b/include/SDL_haptic.h Tue Jul 08 19:35:10 2008 +0000 @@ -642,6 +642,18 @@ */ extern DECLSPEC SDL_Haptic * SDL_HapticOpen(int device_index); +/** + * \fn int SDL_HapticOpened(int device_index) + * + * \brief Checks if the haptic device at index has been opened. + * + * \param device_index Index to check to see if it has been opened. + * \return 1 if it has been opened or 0 if it hasn't. + * + * \sa SDL_HapticOpen + * \sa SDL_HapticIndex + */ +extern DECLSPEC int SDL_HapticOpened(int device_index); /** * \fn int SDL_HapticIndex(SDL_Haptic * haptic) @@ -652,6 +664,7 @@ * \return The index of the haptic device or -1 on error. * * \sa SDL_HapticOpen + * \sa SDL_HapticOpened */ extern DECLSPEC int SDL_HapticIndex(SDL_Haptic * haptic);