=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: include/ddk: Add USB_HUB_DESCRIPTOR.

Alexandre Julliard julliard at winehq.org
Fri Aug 16 14:23:46 CDT 2013


Module: wine
Branch: master
Commit: 545bbb13155eae97b79981ed655f33b25158237d
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=545bbb13155eae97b79981ed655f33b25158237d

Author: André Hentschel <nerv at dawncrow.de>
Date:   Wed Aug  7 00:01:40 2013 +0200

include/ddk: Add USB_HUB_DESCRIPTOR.

---

 include/ddk/usb100.h |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/include/ddk/usb100.h b/include/ddk/usb100.h
index b013f21..7ec7493 100644
--- a/include/ddk/usb100.h
+++ b/include/ddk/usb100.h
@@ -102,6 +102,17 @@ typedef struct _USB_COMMON_DESCRIPTOR {
 } USB_COMMON_DESCRIPTOR;
 typedef struct _USB_COMMON_DESCRIPTOR *PUSB_COMMON_DESCRIPTOR;
 
+typedef struct _USB_HUB_DESCRIPTOR {
+    UCHAR bDescriptorLength;
+    UCHAR bDescriptorType;
+    UCHAR bNumberOfPorts;
+    USHORT wHubCharacteristics;
+    UCHAR bPowerOnToPowerGood;
+    UCHAR bHubControlCurrent;
+    UCHAR bRemoveAndPowerMask[64];
+} USB_HUB_DESCRIPTOR;
+typedef struct _USB_HUB_DESCRIPTOR *PUSB_HUB_DESCRIPTOR;
+
 #include <poppack.h>
 
 #endif




More information about the wine-cvs mailing list