sdlJoystickGetDeviceProductVersion function

int sdlJoystickGetDeviceProductVersion(
  1. int deviceIndex
)

Get the product version of a joystick, if available.

This can be called before any joysticks are opened. If the product version isn't available this function returns 0.

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

\since This function is available since SDL 2.0.6.

extern DECLSPEC Uint16 SDLCALL SDL_JoystickGetDeviceProductVersion(int device_index)

Implementation

int sdlJoystickGetDeviceProductVersion(int deviceIndex) {
  final sdlJoystickGetDeviceProductVersionLookupFunction =
      libSdl2.lookupFunction<Uint16 Function(Int32 deviceIndex),
          int Function(int deviceIndex)>('SDL_JoystickGetDeviceProductVersion');
  return sdlJoystickGetDeviceProductVersionLookupFunction(deviceIndex);
}