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