|
Size: 803
Comment: create page, add content (Rev 5540)
|
Size: 896
Comment: Sync with Philipp's changes from old wiki server
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 1: | Line 1: |
| ## page was renamed from SDL_JoystickIndex | |
| Line 5: | Line 6: |
| = SDL_JoystickIndex = | = SDL_JoystickInstanceID = |
| Line 12: | Line 13: |
| int SDL_JoystickIndex(SDL_Joystick* joystick) | SDL_JoystickID SDL_JoystickInstanceID(SDL_Joystick* joystick) |
| Line 16: | Line 17: |
| ||'''joystick'''||a pointer to a structure containing joystick information ???|| | ||'''joystick'''||an SDL_Joystick structure containing joystick information|| |
| Line 19: | Line 20: |
| Returns the index of the specified joystick on success, or a negative error code on failure; call [[SDL_GetError]]() for more information. | Returns the instance ID of the specified joystick on success or a negative error code on failure; call [[SDL_GetError]]() for more information. |
| Line 30: | Line 31: |
| .[[SDL_JoystickOpen]] * |
DRAFT |
SDL_JoystickInstanceID
Use this function to get the device index of an opened joystick.
Contents
Syntax
SDL_JoystickID SDL_JoystickInstanceID(SDL_Joystick* joystick)
Function Parameters
joystick |
an SDL_Joystick structure containing joystick information |
Return Value
Returns the instance ID of the specified joystick on success or a negative error code on failure; call SDL_GetError() for more information.
Code Examples
You can add your code example here
Remarks
You can add useful comments here
