sdlJoystickGetDeviceType function

int sdlJoystickGetDeviceType(
  1. int deviceIndex
)

Get the type of a joystick, if available.

This can be called before any joysticks are opened.

\param device_index the index of the joystick to query (the N'th joystick on the system \returns the SDL_JoystickType of the selected joystick. If called on an invalid index, this function returns SDL_JOYSTICK_TYPE_UNKNOWN

\since This function is available since SDL 2.0.6.

extern DECLSPEC SDL_JoystickType SDLCALL SDL_JoystickGetDeviceType(int device_index)

Implementation

int sdlJoystickGetDeviceType(int deviceIndex) {
  final sdlJoystickGetDeviceTypeLookupFunction = libSdl2.lookupFunction<
      Int32 Function(Int32 deviceIndex),
      int Function(int deviceIndex)>('SDL_JoystickGetDeviceType');
  return sdlJoystickGetDeviceTypeLookupFunction(deviceIndex);
}