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.

65 lines
1.7 KiB

  1. // stdafx.h : include file for standard system include files,
  2. // or project specific include files that are used frequently,
  3. // but are changed infrequently
  4. // Copyright (c)1997-1999 Microsoft Corporation, All Rights Reserved
  5. #if !defined(AFX_STDAFX_H__438DA5D5_F171_11D0_984E_0000F80270F8__INCLUDED_)
  6. #define AFX_STDAFX_H__438DA5D5_F171_11D0_984E_0000F80270F8__INCLUDED_
  7. #if _MSC_VER >= 1000
  8. #pragma once
  9. #endif // _MSC_VER >= 1000
  10. #ifndef STRICT
  11. #define STRICT
  12. #endif
  13. #define _ATL_STATIC_REGISTRY
  14. #ifndef _WIN32_WINNT
  15. #define _WIN32_WINNT 0x0400
  16. #endif
  17. #define _ATL_APARTMENT_THREADED
  18. #ifdef _UNICODE
  19. #ifndef UNICODE
  20. #define UNICODE // UNICODE is used by Windows headers
  21. #endif
  22. #endif
  23. #ifdef UNICODE
  24. #ifndef _UNICODE
  25. #define _UNICODE // _UNICODE is used by C-runtime/MFC headers
  26. #endif
  27. #endif
  28. #ifdef _DEBUG
  29. #ifndef DEBUG
  30. #define DEBUG
  31. #endif
  32. #endif
  33. #pragma warning(disable: 4505) // unreferenced local function has been removed
  34. #include <windows.h>
  35. // Note that this include MUST be at this location (after the above include)
  36. #include "win95wrp.h"
  37. #include <atlbase.h>
  38. //You may derive a class from CComModule and use it if you want to override
  39. //something, but do not change the name of _Module
  40. extern CComModule _Module;
  41. #pragma warning(disable: 4100 4189 4244) // Necessary for ia64 build
  42. #include <atlcom.h>
  43. #include <atlwin.h>
  44. #pragma warning(default: 4100 4189 4244) // Necessary for ia64 build
  45. #include <mshtml.h>
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  48. #endif // !defined(AFX_STDAFX_H__438DA5D5_F171_11D0_984E_0000F80270F8__INCLUDED)