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.

43 lines
653 B

  1. // Gemplus (C) 1999
  2. //
  3. // Version 1.0
  4. // Author: Sergey Ivanov
  5. // Date of creation - 11.01.1999
  6. // Change log:
  7. //
  8. #ifndef _READER_CONFIG_
  9. #define _READER_CONFIG_
  10. #include "generic.h"
  11. #pragma PAGEDCODE
  12. // Transparent mode configuration
  13. struct TransparentConfig
  14. {
  15. BYTE CFG;
  16. BYTE ETU;
  17. BYTE EGT;
  18. BYTE CWT;
  19. BYTE BWI;
  20. BYTE Fi;
  21. BYTE Di;
  22. };
  23. struct ReaderConfig
  24. {
  25. SHORT Type;
  26. USHORT PresenceDetection;
  27. USHORT Vpp;
  28. BYTE Voltage;
  29. BYTE PTSMode;
  30. BYTE PTS0;
  31. BYTE PTS1;
  32. BYTE PTS2;
  33. BYTE PTS3;
  34. TransparentConfig transparent;
  35. ULONG ActiveProtocol;
  36. ULONG PowerTimeOut;
  37. };
  38. #endif