summaryrefslogtreecommitdiff
path: root/libusb/os/windows_winusb.h
diff options
context:
space:
mode:
authorHarry Mallon <hjmallon@gmail.com>2019-02-07 15:15:03 +0000
committerNathan Hjelm <hjelmn@google.com>2019-08-09 09:21:03 -0700
commite80c1508d3469ecf1042adee3905d6305351de79 (patch)
tree1df16facfecccddf7ba3696127d193e1f4b0b5df /libusb/os/windows_winusb.h
parente0c4660c1b454b519aad6b1542ffb19e4b8a2159 (diff)
downloadlibusb-e80c1508d3469ecf1042adee3905d6305351de79.tar.gz
windows_winusb: Add support for reporting super speed plus devices
Closes #531 Signed-off-by: Nathan Hjelm <hjelmn@google.com>
Diffstat (limited to 'libusb/os/windows_winusb.h')
-rw-r--r--libusb/os/windows_winusb.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libusb/os/windows_winusb.h b/libusb/os/windows_winusb.h
index 3a911d5..dd8fde5 100644
--- a/libusb/os/windows_winusb.h
+++ b/libusb/os/windows_winusb.h
@@ -397,7 +397,9 @@ typedef union _USB_NODE_CONNECTION_INFORMATION_EX_V2_FLAGS {
struct {
ULONG DeviceIsOperatingAtSuperSpeedOrHigher:1;
ULONG DeviceIsSuperSpeedCapableOrHigher:1;
- ULONG ReservedMBZ:30;
+ ULONG DeviceIsOperatingAtSuperSpeedPlusOrHigher:1;
+ ULONG DeviceIsSuperSpeedPlusCapableOrHigher:1;
+ ULONG ReservedMBZ:28;
};
} USB_NODE_CONNECTION_INFORMATION_EX_V2_FLAGS, *PUSB_NODE_CONNECTION_INFORMATION_EX_V2_FLAGS;