| 1028 | } |
| 1029 | |
| 1030 | int HID_API_EXPORT hid_read(hid_device *dev, unsigned char *data, size_t length) |
| 1031 | { |
| 1032 | return hid_read_timeout(dev, data, length, dev->blocking ? -1 : 0); |
| 1033 | } |
| 1034 | |
| 1035 | int HID_API_EXPORT hid_set_nonblocking(hid_device *dev, int nonblock) |
| 1036 | { |
no test coverage detected