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.

47 lines
1.0 KiB

  1. /**********************************************************************/
  2. /** Microsoft Windows NT **/
  3. /** Copyright(c) Microsoft Corp., 1993 **/
  4. /**********************************************************************/
  5. /*
  6. TCPdata.hxx
  7. This file contains the global variable definitions for the
  8. TCP Service.
  9. FILE HISTORY:
  10. KeithMo 07-Mar-1993 Created.
  11. MuraliK 21-Feb-1995 Removed TCPDebug variable
  12. */
  13. #ifndef _TCPDATA_H_
  14. #define _TCPDATA_H_
  15. //
  16. // Miscellaneous data.
  17. //
  18. //
  19. // The global variable is to be defined for each service.
  20. // The variable is defined by using DEFINE_TSVCINFO_INTERFACE macro
  21. // in exactly one of the code files for the service.
  22. // Dont change the name of this global variable. Many macros depend on this.
  23. // Read As: global pointer to Tcp service info object
  24. //
  25. # ifdef __cplusplus
  26. extern LPTSVC_INFO g_pTsvcInfo;
  27. extern PMIME_MAP g_pMimeMap;
  28. # endif // __cplusplus
  29. #endif // _TCPDATA_H_