Man page - sdl_getjoystickguidinfo(3)
Packages contains this manual
Manual
SDL_GetJoystickGUIDInfo
NAMEHEADER FILE
SYNOPSIS
FUNCTION PARAMETERS
AVAILABILITY
SEE ALSO
NAME
SDL_GetJoystickGUIDInfo
- Get the device information encoded in a
SDL_GUID
structure.
HEADER FILE
Defined in SDL3/SDL_joystick.h
SYNOPSIS
#include "SDL3/SDL.h"
void SDL_GetJoystickGUIDInfo(SDL_GUID guid, Uint16 *vendor, Uint16 *product, Uint16 *version, Uint16 *crc16);
FUNCTION PARAMETERS
|
guid |
the SDL_GUID |
you wish to get info about.
|
vendor |
a pointer filled in with the device VID, or 0 if not available. |
product
a pointer filled in with the device PID, or 0 if not available.
version
a pointer filled in with the device version, or 0 if not available.
|
crc16 |
a pointer filled in with a CRC used to distinguish different products with the same VID/PID, or 0 if not available. |
AVAILABILITY
This function is available since SDL 3.2.0.
SEE ALSO
• (3), SDL_GetJoystickGUIDForID (3)