THIS PAGE IS A WORK IN PROGRESS ... Please make edits to this page to improve it!
Get the implementation dependent name of a joystick.
const char* SDL_JoystickNameForIndex(int device_index);
device_index |
the index of the joystick to query (the N'th joystick on the system) |
Returns the name of the selected joystick. If no name can be found, this function returns NULL; call SDL_GetError() for more information.
This can be called before any joysticks are opened.
/* Print the names of all attached joysticks */
int num_joy, i;
num_joy = SDL_NumJoysticks();"%d joysticks found\n", num_joy);
printf(for (i = 0; i < num_joy; ++i) {
"%s\n", SDL_JoystickNameForIndex(i));
printf( }
CategoryAPI, CategoryJoystick, CategoryDraft