table of contents
SDL_hid_read(3) | SDL3 FUNCTIONS | SDL_hid_read(3) |
NAME¶
SDL_hid_read - Read an Input report from a HID device.
SYNOPSIS¶
#include <SDL3/SDL_hidapi.h>
int SDL_hid_read(SDL_hid_device *dev, unsigned char *data, size_t length);
DESCRIPTION¶
Input reports are returned to the host through the INTERRUPT IN endpoint. The first byte will contain the Report number if the device uses numbered reports.
FUNCTION PARAMETERS¶
RETURN VALUE¶
for more information. If no packet was available to be read and the handle is in non-blocking mode, this function returns 0.
AVAILABILITY¶
This function is available since SDL 3.2.0.
SDL 3.2.14 | Simple Directmedia Layer |