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.

46 lines
1.2 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1999
  6. //
  7. // File: stdafx.h
  8. //
  9. //--------------------------------------------------------------------------
  10. // stdafx.h : include file for standard system include files,
  11. // or project specific include files that are used frequently,
  12. // but are changed infrequently
  13. #if !defined(AFX_STDAFX_H__A49C3E9C_A3F8_11D1_9369_00C04FC9DA04__INCLUDED_)
  14. #define AFX_STDAFX_H__A49C3E9C_A3F8_11D1_9369_00C04FC9DA04__INCLUDED_
  15. #if _MSC_VER >= 1000
  16. #pragma once
  17. #endif // _MSC_VER >= 1000
  18. #define STRICT
  19. #define _WIN32_WINNT 0x0400
  20. #define _ATL_APARTMENT_THREADED
  21. #include <atlbase.h>
  22. //You may derive a class from CComModule and use it if you want to override
  23. //something, but do not change the name of _Module
  24. class CExeModule : public CComModule
  25. {
  26. public:
  27. LONG Unlock();
  28. DWORD dwThreadID;
  29. };
  30. extern CExeModule _Module;
  31. #include <atlcom.h>
  32. #include "rtutils.h"
  33. //{{AFX_INSERT_LOCATION}}
  34. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  35. #endif // !defined(AFX_STDAFX_H__A49C3E9C_A3F8_11D1_9369_00C04FC9DA04__INCLUDED)