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.

72 lines
2.2 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__683364A5_B37D_11D1_ADC5_006008A5848C__INCLUDED_)
  6. #define AFX_STDAFX_H__683364A5_B37D_11D1_ADC5_006008A5848C__INCLUDED_
  7. #if _MSC_VER >= 1000
  8. #pragma once
  9. #endif // _MSC_VER >= 1000
  10. #ifndef STRICT
  11. #define STRICT
  12. #endif // STRICT
  13. #define _WIN32_WINNT 0x0400
  14. #define _ATL_APARTMENT_THREADED
  15. #ifdef _UNICODE
  16. #ifndef UNICODE
  17. #define UNICODE // UNICODE is used by Windows headers
  18. #endif
  19. #endif
  20. #ifdef _DEBUG
  21. #ifndef DEBUG
  22. #define DEBUG
  23. #endif
  24. #endif
  25. #pragma warning(disable:4786) // Turncated label warnings
  26. #pragma warning(disable: 4505) // unreferenced local function has been removed
  27. #include <windows.h>
  28. // Note that this include MUST be at this location (after the above include)
  29. #include "win95wrp.h"
  30. #include <atlbase.h>
  31. #define AGGREGATE_TRIDENT 0
  32. #define DHTMLEDTRACE OutputDebugString
  33. // DHTMLEdit 1.0 had a requirement to be able to register WITHOUT being able to run.
  34. // Thus, URLMon and WinINet were loaded late and necessary routines were bound as needed.
  35. // This reuqirement went away with 2.0, and stood in the way of Win95Wrap utilization.
  36. //#define LATE_BIND_URLMON_WININET 1
  37. //You may derive a class from CComModule and use it if you want to override
  38. //something, but do not change the name of _Module
  39. extern CComModule _Module;
  40. #pragma warning(disable: 4100 4189 4244) // Necessary for ia64 build
  41. #include <atlcom.h>
  42. #pragma warning(disable: 4510 4610) // Necessary for Win32 build W4
  43. #include "atlctl.h"
  44. #pragma warning(default: 4510 4610) // Necessary for Win32 build W4
  45. #pragma warning(default: 4100 4189 4244) // Necessary for ia64 build
  46. #include <mshtml.h>
  47. #include <mshtmhst.h>
  48. #include <mshtmcid.h>
  49. #include <triedit.h>
  50. #include <triedcid.h>
  51. #include <comdef.h>
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  54. #endif // !defined(AFX_STDAFX_H__683364A5_B37D_11D1_ADC5_006008A5848C__INCLUDED)