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.

36 lines
772 B

  1. /*--------------------------------------------------------------
  2. *
  3. * FILE: SK_DLLIF.H
  4. *
  5. * PURPOSE: The file contains data structures for the
  6. * transmission of information between the
  7. * SerialKeys and the DLL.
  8. *
  9. * CREATION: June 1994
  10. *
  11. * COPYRIGHT: Black Diamond Software (C) 1994
  12. *
  13. * AUTHOR: Ronald Moak
  14. *
  15. * $Header: %Z% %F% %H% %T% %I%
  16. *
  17. *------------------------------------------------------------*/
  18. typedef struct _SKEYDLL
  19. {
  20. int Message; // Get or Set Changes
  21. DWORD dwFlags;
  22. char szActivePort[MAX_PATH];
  23. char szPort[MAX_PATH];
  24. DWORD iBaudRate;
  25. DWORD iPortState;
  26. DWORD iSave; // TRUE - Write to Registry
  27. } SKEYDLL;
  28. // Messages
  29. #define SKEY_NAME TEXT("\\\\.\\PIPE\\SKeys")