mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 06:09:58 +00:00
29fa274d6d
- TSVN choked repeatedly when attempting to merge ~9000 revs into the branch (tried 3 times on 2 different computers) - If someone wants to delete aicom-network-fixes, they are welcome to - Lesson learned: Letting a branch get thousands of revs out of date is a horrible idea svn path=/branches/aicom-network-branch/; revision=44353
52 lines
2.2 KiB
C
52 lines
2.2 KiB
C
|
|
|
|
#ifndef __USBIODEF_H__
|
|
#define __USBIODEF_H__
|
|
|
|
DEFINE_GUID(GUID_DEVINTERFACE_USB_HUB, 0xF18A0E88, 0xc30C, 0x11D0, 0x88, 0x15, 0x00, 0xA0, 0xC9, 0x06, 0xBE, 0xD8);
|
|
DEFINE_GUID(GUID_DEVINTERFACE_USB_DEVICE, 0xA5DCBF10L, 0x6530, 0x11D2, 0x90, 0x1F, 0x00, 0xC0, 0x4F, 0xB9, 0x51, 0xED);
|
|
DEFINE_GUID(GUID_DEVINTERFACE_USB_HOST_CONTROLLER, 0x3ABF6F2D, 0x71C4, 0x462A, 0x8A, 0x92, 0x1E, 0x68, 0x61, 0xE6, 0xAF, 0x27);
|
|
DEFINE_GUID(GUID_USB_WMI_STD_DATA, 0x4E623B20L, 0xCB14, 0x11D1, 0xB3, 0x31, 0x00, 0xA0, 0xC9, 0x59, 0xBB, 0xD2);
|
|
DEFINE_GUID(GUID_USB_WMI_STD_NOTIFICATION, 0x4E623B20L, 0xCB14, 0x11D1, 0xB3, 0x31, 0x00, 0xA0, 0xC9, 0x59, 0xBB, 0xD2);
|
|
|
|
#define GUID_CLASS_USBHUB GUID_DEVINTERFACE_USB_HUB
|
|
#define GUID_CLASS_USB_DEVICE GUID_DEVINTERFACE_USB_DEVICE
|
|
#define GUID_CLASS_USB_HOST_CONTROLLER GUID_DEVINTERFACE_USB_HOST_CONTROLLER
|
|
#define HCD_GET_STATS_1 255
|
|
#define HCD_DIAGNOSTIC_MODE_ON 256
|
|
#define HCD_DIAGNOSTIC_MODE_OFF 257
|
|
#define HCD_GET_ROOT_HUB_NAME 258
|
|
#define HCD_GET_DRIVERKEY_NAME 265
|
|
#define HCD_GET_STATS_2 266
|
|
#define HCD_DISABLE_PORT 268
|
|
#define HCD_ENABLE_PORT 269
|
|
#define HCD_USER_REQUEST 270
|
|
#define USB_SUBMIT_URB 0
|
|
#define USB_RESET_PORT 1
|
|
#define USB_GET_ROOTHUB_PDO 3
|
|
#define USB_GET_PORT_STATUS 4
|
|
#define USB_ENABLE_PORT 5
|
|
#define USB_GET_HUB_COUNT 6
|
|
#define USB_CYCLE_PORT 7
|
|
#define USB_GET_HUB_NAME 8
|
|
#define USB_IDLE_NOTIFICATION 9
|
|
#define USB_GET_BUS_INFO 264
|
|
#define USB_GET_CONTROLLER_NAME 265
|
|
#define USB_GET_BUSGUID_INFO 266
|
|
#define USB_GET_PARENT_HUB_INFO 267
|
|
#define USB_GET_DEVICE_HANDLE 268
|
|
#define USB_GET_NODE_INFORMATION 258
|
|
#define USB_GET_NODE_CONNECTION_INFORMATION 259
|
|
#define USB_GET_DESCRIPTOR_FROM_NODE_CONNECTION 260
|
|
#define USB_GET_NODE_CONNECTION_NAME 261
|
|
#define USB_DIAG_IGNORE_HUBS_ON 262
|
|
#define USB_DIAG_IGNORE_HUBS_OFF 263
|
|
#define USB_GET_NODE_CONNECTION_DRIVERKEY_NAME 264
|
|
#define USB_GET_HUB_CAPABILITIES 271
|
|
#define USB_GET_NODE_CONNECTION_ATTRIBUTES 272
|
|
#define USB_HUB_CYCLE_PORT 273
|
|
#define USB_GET_NODE_CONNECTION_INFORMATION_EX 274
|
|
#define FILE_DEVICE_USB FILE_DEVICE_UNKNOWN
|
|
#define USB_CTL(id) CTL_CODE(FILE_DEVICE_USB, (id), METHOD_BUFFERED, FILE_ANY_ACCESS)
|
|
#define USB_KERNEL_CTL(id) CTL_CODE(FILE_DEVICE_USB, (id), METHOD_NEITHER, FILE_ANY_ACCESS)
|
|
#endif
|