TODO: Implement blocking
| 1060 | |
| 1061 | // TODO: Implement blocking |
| 1062 | int HID_API_EXPORT HID_API_CALL hid_read(hid_device *device, unsigned char *data, size_t length) |
| 1063 | { |
| 1064 | LOGV( "hid_read id=%d length=%u", device->m_nId, length ); |
| 1065 | return hid_read_timeout( device, data, length, 0 ); |
| 1066 | } |
| 1067 | |
| 1068 | // TODO: Implement? |
| 1069 | int HID_API_EXPORT HID_API_CALL hid_set_nonblocking(hid_device *device, int nonblock) |
nothing calls this directly
no test coverage detected