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.

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, but
  3. // are changed infrequently
  4. //
  5. /////////////////////////////////////////////////////////////////////////////
  6. // Common Pragmas
  7. /////////////////////////////////////////////////////////////////////////////
  8. #pragma warning(disable : 4100) // unreferenced formal parameters
  9. #pragma warning(disable : 4702) // unreachable code
  10. #pragma warning(disable : 4711) // function selected for automatic inline expansion
  11. /////////////////////////////////////////////////////////////////////////////
  12. // Include Files
  13. /////////////////////////////////////////////////////////////////////////////
  14. //#define _DISPLAY_STATE_TEXT_IN_TREE
  15. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  16. #include <afxwin.h> // MFC core and standard components
  17. #include <afxext.h> // MFC extensions
  18. #include <afxcview.h>
  19. #include <afxdisp.h> // MFC OLE automation classes
  20. #ifndef _AFX_NO_AFXCMN_SUPPORT
  21. #include <afxcmn.h> // MFC support for Windows 95 Common Controls
  22. #endif // _AFX_NO_AFXCMN_SUPPORT
  23. // Need to include this for WM_COMMANDHELP. Unfortunately, both afxpriv.h and
  24. // atlconv.h define some of the same macros. Since we are using ATL, we'll use
  25. // the ATL versions.
  26. #define __AFXCONV_H__
  27. #include <afxpriv.h>
  28. #undef __AFXCONV_H__
  29. #undef DEVMODEW2A
  30. #undef DEVMODEA2W
  31. #undef TEXTMETRICW2A
  32. #undef TEXTMETRICA2W
  33. #include <afxtempl.h> // MFC template classes
  34. #include <atlbase.h>
  35. //You may derive a class from CComModule and use it if you want to override
  36. //something, but do not change the name of _Module
  37. extern CComModule _Module;
  38. #include <atlcom.h>
  39. #ifndef _WINREG_
  40. #include <winreg.h> // for REGSAM (needed by clusapi.h)
  41. #endif
  42. #ifndef _CLUSTER_API_
  43. #include <clusapi.h> // for cluster definitions
  44. #endif
  45. #ifndef _CLUSUDEF_H_
  46. #include "clusudef.h" // for cluster project-wide definitions
  47. #endif
  48. #ifndef _CLUSRTL_INCLUDED_
  49. #include "clusrtl.h"
  50. #endif
  51. #include <netcon.h>
  52. #include <htmlhelp.h>
  53. #ifndef _CADMTYPE_H_
  54. #include "cadmtype.h"
  55. #endif
  56. #include <ClusCfgWizard.h>
  57. #include <ClusCfgGuids.h>