| SDL_hid_get_feature_report(3) | SDL3 FUNCTIONS | SDL_hid_get_feature_report(3) |
SDL_hid_get_feature_report - Get a feature report from a HID device.
Defined in SDL3/SDL_hidapi.h
#include "SDL3/SDL.h"
int SDL_hid_get_feature_report(SDL_hid_device *dev, unsigned char *data, size_t length);
Set the first byte of data to the Report ID of the report to be read. Make sure to allow space for this extra byte in data . Upon return, the first byte will still contain the Report ID, and the report data will start in data[1].
Returns the number of bytes read plus one for the report ID (which is still in the first byte), or -1 on on failure; call
SDL_GetError () for more information.
This function is available since SDL 3.2.0.
| SDL 3.2.10 | Simple Directmedia Layer |