diff options
author | Pete Batard <pbatard@gmail.com> | 2010-01-23 23:28:55 +0000 |
---|---|---|
committer | Pete Batard <pbatard@gmail.com> | 2010-01-23 23:28:55 +0000 |
commit | 628bd43bc24319f82a6ca63265b55adce438c9b5 (patch) | |
tree | a45f752fdc0d9b3cc034bc437dbcc7dcf20ef819 /libusb/os/windows_usb.h | |
parent | 6b34ff4ed72e3c52b4c927946b4fb0a233c24044 (diff) | |
download | libusb-628bd43bc24319f82a6ca63265b55adce438c9b5.tar.gz |
r105: added MS Sidewinder HID test in xusb.c + minor changes/improvements
Diffstat (limited to 'libusb/os/windows_usb.h')
-rw-r--r-- | libusb/os/windows_usb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libusb/os/windows_usb.h b/libusb/os/windows_usb.h index 58fc9b2..582605f 100644 --- a/libusb/os/windows_usb.h +++ b/libusb/os/windows_usb.h @@ -83,7 +83,7 @@ inline void upperize(char* str) { // Handle code for HID interface that have been claimed ("dibs") #define INTERFACE_CLAIMED ((HANDLE)0xD1B5) // Additional return code for HID operations that completed synchronously -#define LIBUSB_COMPLETED (LIBUSB_SUCCESS + 1) +#define LIBUSB_COMPLETED (LIBUSB_SUCCESS + 1) #define wchar_to_utf8_ms(wstr, str, strlen) WideCharToMultiByte(CP_UTF8, 0, wstr, -1, str, strlen, NULL, NULL) |