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.

79 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. // Copyright (c) 2000 Microsoft Corporation
  6. //
  7. // 03-15-00 v-marfin Bug 62069 : Added lib pragmas and #defines
  8. //
  9. //
  10. //
  11. //
  12. //
  13. #if !defined(AFX_STDAFX_H__7D4A6853_9056_11D2_BD45_0000F87A3912__INCLUDED_)
  14. #define AFX_STDAFX_H__7D4A6853_9056_11D2_BD45_0000F87A3912__INCLUDED_
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif // _MSC_VER > 1000
  18. // v-marfin : bug 62069 ----------------------------------------------
  19. #pragma comment (lib, "mmc.lib")
  20. #pragma comment (lib, "Netapi32.lib")
  21. #pragma comment (lib, "version.lib")
  22. #ifndef UNICODE
  23. #define UNICODE
  24. #endif // #ifndef UNICODE
  25. #ifndef _UNICODE
  26. #define _UNICODE
  27. #endif // #ifndef _UNICODE
  28. #ifndef _WIN32_WINNT
  29. #define _WIN32_WINNT 0x0400
  30. #endif // #ifndef _WIN32_WINNT
  31. #ifndef WINNT
  32. #define WINNT 0x0400
  33. #endif // #ifndef WINNT
  34. // -------------------------------------------------------------------
  35. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  36. #include <afxwin.h> // MFC core and standard components
  37. #include <afxext.h> // MFC extensions
  38. #ifndef _AFX_NO_OLE_SUPPORT
  39. #include <afxole.h> // MFC OLE classes
  40. #include <afxodlgs.h> // MFC OLE dialog classes
  41. #include <afxctl.h> // MFC OLE control classes
  42. #include <afxdisp.h> // MFC Automation classes
  43. #endif // _AFX_NO_OLE_SUPPORT
  44. #ifndef _AFX_NO_DB_SUPPORT
  45. #include <afxdb.h> // MFC ODBC database classes
  46. #endif // _AFX_NO_DB_SUPPORT
  47. #ifndef _AFX_NO_DAO_SUPPORT
  48. #include <afxdao.h> // MFC DAO database classes
  49. #endif // _AFX_NO_DAO_SUPPORT
  50. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  51. #ifndef _AFX_NO_AFXCMN_SUPPORT
  52. #include <afxcmn.h> // MFC support for Windows Common Controls
  53. #endif // _AFX_NO_AFXCMN_SUPPORT
  54. #include <afxtempl.h> // template class support
  55. #include <atlconv.h> // atl string conversions et al
  56. #include "Debug.h"
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  59. #endif // !defined(AFX_STDAFX_H__7D4A6853_9056_11D2_BD45_0000F87A3912__INCLUDED_)