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.

28 lines
585 B

  1. /*++
  2. The below GUID is used to generate symbolic links to
  3. driver instances created from user mode
  4. --*/
  5. #ifndef GUID_INC
  6. #define GUID_INC
  7. #ifdef __cplusplus
  8. extern "C"{
  9. #endif
  10. #include <smclib.h>
  11. #include <initguid.h>
  12. // {8C7F3D60-FC17-11d2-B669-0008C7606FEB} for GRUSB.SYS
  13. DEFINE_GUID(GUID_CLASS_GRCLASS,
  14. 0x8c7f3d60, 0xfc17, 0x11d2, 0xb6, 0x69, 0x0, 0x8, 0xc7, 0x60, 0x6f, 0xeb);
  15. //SmartCardReaderGuid
  16. DEFINE_GUID(GUID_CLASS_SMARTCARD,
  17. 0x50DD5230, 0xBA8A, 0x11D1, 0xBF, 0x5D, 0x00, 0x00, 0xF8, 0x05, 0xF5, 0x30);
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21. #endif // end, #ifndef GUID_INC