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.

15 lines
294 B

  1. #ifndef _DEVCTRL_DEFS_H
  2. #define _DEVCTRL_DEFS_H
  3. #define MAX_IO_HANDLES 16
  4. typedef struct _DEVCTRL {
  5. HANDLE DeviceIOHandles[MAX_IO_HANDLES];
  6. INT StatusPipeIndex;
  7. INT InterruptPipeIndex;
  8. INT BulkOutPipeIndex;
  9. INT BulkInPipeIndex;
  10. } DEVCTRL, *PDEVCTRL;
  11. #endif