Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
577 B

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. usbpriv.h
  5. Abstract:
  6. Environment:
  7. Kernel & user mode
  8. Revision History:
  9. 10-30-01 : created
  10. --*/
  11. #ifndef __USB_PRIV_H__
  12. #define __USB_PRIV_H__
  13. // {022252A1-ED5D-4e3f-976F-B2D9DB3D2BD3}
  14. DEFINE_GUID(GUID_USBPRIV_ROOTPORT_STATUS,
  15. 0x22252a1, 0xed5d, 0x4e3f, 0x97, 0x6f, 0xb2, 0xd9, 0xdb, 0x3d, 0x2b, 0xd3);
  16. typedef struct _USBPRIV_ROOTPORT_STATUS
  17. {
  18. RH_PORT_STATUS PortStatus;
  19. USHORT PortNumber;
  20. }
  21. USBPRIV_ROOTPORT_STATUS, *PUSBPRIV_ROOTPORT_STATUS;
  22. #endif /* __USB_PRIV_H__ */