logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_hid_get_serial_number_string - Get The Serial Number String from a HID device.

Availability

       This function is available since SDL 3.2.0.

Simple Directmedia Layer                           SDL 3.2.10                SDL_hid_get_serial_number_string(3)

Function Parameters

dev    a device handle returned from SDL_hid_open ().

       string a wide string buffer to put the data into.

       maxlen the length of the buffer in multiples of wchar_t.

Header File

       Defined in SDL3/SDL_hidapi.h

Name

       SDL_hid_get_serial_number_string - Get The Serial Number String from a HID device.

Return Value

       Returns 0 on success or a negative error code on failure; call

       SDL_GetError () for more information.

Synopsis

#include"SDL3/SDL.h"intSDL_hid_get_serial_number_string(SDL_hid_device*dev,wchar_t*string,size_tmaxlen);

See Also