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_open - Open a HID device using a Vendor ID (VID), Product ID (PID) and optionally a serial

Availability

       This function is available since SDL 3.2.0.

Simple Directmedia Layer                           SDL 3.2.20                                    SDL_hid_open(3)

Description

       If serial_number is NULL, the first device with the specified VID and PID is opened.

Function Parameters

vendor_id
              the Vendor ID (VID) of the device to open.

       product_id
              the Product ID (PID) of the device to open.

       serial_number
              the Serial Number of the device to open (Optionally NULL).

Name

       SDL_hid_open  -  Open  a  HID  device  using  a Vendor ID (VID), Product ID (PID) and optionally a serial
       number.

Return Value

       Returns a pointer to a SDL_hid_device object on success or NULL on failure; call SDL_GetError() for  more
       information.

Synopsis

#include<SDL3/SDL_hidapi.h>SDL_hid_device*SDL_hid_open(unsignedshortvendor_id,unsignedshortproduct_id,constwchar_t*serial_number);

See Also