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.

32 lines
657 B

  1. /*
  2. * Copyright (c) Microsoft Corporation
  3. *
  4. * Module Name :
  5. * tcsrvc.h
  6. *
  7. * Contains the structure definition for exchanging information between
  8. * the client and the server.
  9. *
  10. *
  11. * Sadagopan Rajaram -- Oct 18, 1999
  12. *
  13. */
  14. #define TCSERV_MUTEX_NAME _T("Microsoft-TCSERV-Mutex")
  15. #ifndef MAX_BUFFER_SIZE
  16. #define MAX_BUFFER_SIZE 256
  17. #endif
  18. typedef struct _CLIENT_INFO{
  19. int len;
  20. TCHAR device[MAX_BUFFER_SIZE];
  21. } CLIENT_INFO, *PCLIENT_INFO;
  22. #define SERVICE_PORT 3876
  23. #define HKEY_TCSERV_PARAMETER_KEY _T("System\\CurrentControlSet\\Services\\TCSERV\\Parameters")
  24. #define TCSERV_NAME _T("TCSERV")