Leaked source code of windows server 2003
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.

24 lines
514 B

  1. //
  2. // stirioctl.h
  3. //
  4. #ifndef _STIRIOCTL_H_
  5. #define _STIRIOCTL_H_
  6. #define STIR_CUSTOMER_INFO_SIZE 255
  7. // Structure of returned customer data buffer
  8. typedef struct _STIR_CUSTOMER_DATA
  9. {
  10. UCHAR ByteCount;
  11. UCHAR Info[STIR_CUSTOMER_INFO_SIZE];
  12. } STIR_CUSTOMER_DATA, *PSTIR_CUSTOMER_DATA;
  13. #ifndef FILE_DEVICE_STIRUSB
  14. #define FILE_DEVICE_STIRUSB 0x8000
  15. #endif
  16. #define IOCTL_STIR_CUSTOMER_DATA CTL_CODE(FILE_DEVICE_STIRUSB, 0x900, METHOD_BUFFERED, FILE_ANY_ACCESS)
  17. #endif // _STIRIOCTL_H