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.

84 lines
1.8 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1999 - 1999
  6. //
  7. // File: precompiled.h
  8. //
  9. //--------------------------------------------------------------------------
  10. // Precompiled.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(_PRECOMPILED_INCLUDED_)
  14. #define _PRECOMPILED_INCLUDED_
  15. #if _MSC_VER >= 1000
  16. #pragma once
  17. #endif // _MSC_VER >= 1000
  18. #define STRICT
  19. #define _ATL_APARTMENT_THREADED
  20. // MFC standard includes needed for attributeeditor classes in this dll:
  21. #include <afx.h>
  22. #include <afxwin.h>
  23. #include <afxdisp.h>
  24. #include <afxdlgs.h>
  25. #include <afxmt.h>
  26. #include <afxcmn.h>
  27. #include <afxtempl.h>
  28. #ifdef BUILDING_IN_DEVSTUDIO
  29. #else
  30. #include <windows.h>
  31. #include <shellapi.h>
  32. #endif
  33. #include "atlbase.h"
  34. //You may derive a class from CComModule and use it if you want to override
  35. //something, but do not change the name of _Module
  36. extern CComModule _Module;
  37. extern DWORD g_dwTraceHandle;
  38. #ifndef ATLASSERT
  39. #define ATLASSERT _ASSERTE
  40. #endif // ATLASSERT
  41. #include "atlcom.h"
  42. #include "atlwin.h"
  43. #include "atlsnap.h"
  44. #include "atlapp.h"
  45. #include <htmlhelp.h>
  46. #include <rtutils.h>
  47. #include <oledberr.h>
  48. #if __RPCNDR_H_VERSION__ < 440 // This may be needed when building
  49. #define __RPCNDR_H_VERSION__ 440 // on NT5 (1671) to prevent MIDL errors
  50. #define MIDL_INTERFACE(x) interface
  51. #endif
  52. #include "iasdebug.h"
  53. #include "sdoias.h"
  54. #include "iascomp.h"
  55. #include "napmmc.h"
  56. #include "Globals.h"
  57. #include "dialog.h"
  58. #include "propertypage.h"
  59. #include "dlgcshlp.h"
  60. #include "MMCUtility.h"
  61. #include "SdoHelperFuncs.h"
  62. #endif // if !(defined _precompiled_include_)