sdlGameControllerTypeForIndex function

int sdlGameControllerTypeForIndex(
  1. int joystickIndex
)

Get the type of a game controller.

This can be called before any controllers are opened.

\param joystick_index the device_index of a device, from zero to SDL_NumJoysticks()-1 \returns the controller type.

\since This function is available since SDL 2.0.12.

extern DECLSPEC SDL_GameControllerType SDLCALL SDL_GameControllerTypeForIndex(int joystick_index)

Implementation

int sdlGameControllerTypeForIndex(int joystickIndex) {
  final sdlGameControllerTypeForIndexLookupFunction = libSdl2.lookupFunction<
      Int32 Function(Int32 joystickIndex),
      int Function(int joystickIndex)>('SDL_GameControllerTypeForIndex');
  return sdlGameControllerTypeForIndexLookupFunction(joystickIndex);
}