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
725 B

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. Global.cpp
  5. Abstract:
  6. Contains the implementions of the common headers and global variable
  7. declarations
  8. Author:
  9. Hakki T. Bostanci (hakkib) 17-Dec-1999
  10. Revision History:
  11. --*/
  12. #include "stdafx.h"
  13. #define IMPLEMENT_GUARDALLOC
  14. #include "GuardAlloc.h"
  15. #define IMPLEMENT_LOGWINDOW
  16. #include "LogWindow.h"
  17. #define IMPLEMENT_ARGV
  18. #include "Argv.h"
  19. #include "WiaStress.h"
  20. CNtLog::CNtLogDLL CNtLog::m_Dll;
  21. CLorLog::CLorLogDLL CLorLog::m_Dll;
  22. CMyHeap<> g_MyHeap;
  23. CGuardAllocator g_GuardAllocator;
  24. CCppMem<CLog> g_pLog = new CLog;
  25. CLogWindow g_LogWindow;
  26. CMyCriticalSection CWiaStressThread::s_PropWriteCritSect;