| 1538 | } |
| 1539 | |
| 1540 | HID_API_EXPORT const wchar_t * HID_API_CALL hid_error(hid_device *dev) |
| 1541 | { |
| 1542 | if (dev) { |
| 1543 | if (dev->last_error_str == NULL) |
| 1544 | return L"Success"; |
| 1545 | return dev->last_error_str; |
| 1546 | } |
| 1547 | |
| 1548 | if (last_global_error_str == NULL) |
| 1549 | return L"Success"; |
| 1550 | return last_global_error_str; |
| 1551 | } |
no outgoing calls