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_bus_type - HID underlying bus types.

Availability

       This enum is available since SDL 3.2.0.

Simple Directmedia Layer                           SDL 3.2.10                            SDL_hid_bus_type(3type)

Header File

       Defined in SDL3/SDL_hidapi.h

Name

       SDL_hid_bus_type - HID underlying bus types.

Synopsis

#include"SDL3/SDL.h"typedefenumSDL_hid_bus_type{/**Unknownbustype*/SDL_HID_API_BUS_UNKNOWN=0x00,/**USBbusSpecifications:https://usb.org/hid*/SDL_HID_API_BUS_USB=0x01,/**BluetoothorBluetoothLEbusSpecifications:https://www.bluetooth.com/specifications/specs/human-interface-device-profile-1-1-1/https://www.bluetooth.com/specifications/specs/hid-service-1-0/https://www.bluetooth.com/specifications/specs/hid-over-gatt-profile-1-0/*/SDL_HID_API_BUS_BLUETOOTH=0x02,/**I2CbusSpecifications:https://docs.microsoft.com/previous-versions/windows/hardware/design/dn642101(v=vs.85)*/SDL_HID_API_BUS_I2C=0x03,/**SPIbusSpecifications:https://www.microsoft.com/download/details.aspx?id=103325*/SDL_HID_API_BUS_SPI=0x04}SDL_hid_bus_type;

See Also