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.

50 lines
1005 B

  1. /************************************************************************************************
  2. Copyright (c) 2001 Microsoft Corporation
  3. File Name: Global.cxx
  4. Abstract: Defines global varibles
  5. Notes:
  6. History: 08/01/2001 Created by Hao Yu (haoyu)
  7. ************************************************************************************************/
  8. #include <stdafx.h>
  9. #include <ThdPool.hxx>
  10. #include <SockPool.hxx>
  11. #ifdef ROCKALL3
  12. FAST_HEAP g_RockallHeap;
  13. #endif
  14. HANDLE g_hShutDown;
  15. HANDLE g_hDoSEvent;
  16. char g_szMailRoot[POP3_MAX_MAILROOT_LENGTH];
  17. WCHAR g_wszGreeting[MAX_PATH];
  18. WCHAR g_wszComputerName[MAX_PATH];
  19. DWORD g_dwRequireSPA;
  20. DWORD g_dwIPVersion;
  21. DWORD g_dwMaxMsgPerDnld;
  22. DWORD g_dwServerStatus;
  23. DWORD g_dwAuthMethod;
  24. CIOList g_BusyList;
  25. CIOList g_FreeList;
  26. CThreadPool g_ThreadPool;
  27. CSocketPool g_SocketPool;
  28. GLOBCNTR g_PerfCounters;
  29. CEventLogger g_EventLogger;
  30. IAuthMethod *g_pAuthMethod=NULL;