| 1323 | } |
| 1324 | |
| 1325 | int HID_API_EXPORT hid_set_nonblocking(hid_device *dev, int nonblock) |
| 1326 | { |
| 1327 | /* All Nonblocking operation is handled by the library. */ |
| 1328 | dev->blocking = !nonblock; |
| 1329 | |
| 1330 | return 0; |
| 1331 | } |
| 1332 | |
| 1333 | int HID_API_EXPORT hid_send_feature_report(hid_device *dev, const unsigned char *data, size_t length) |
| 1334 | { |