StdAfx.h
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Visual C++

  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. #pragma once
  6. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  7. // 如果您必须使用下列所指定的平台之前的平台,则修改下面的定义。
  8. // 有关不同平台的相应值的最新信息,请参考 MSDN。
  9. #ifndef WINVER // 允许使用 Windows 95 和 Windows NT 4 或更高版本的特定功能。
  10. #define WINVER 0x0400 //为 Windows98 和 Windows 2000 及更新版本改变为适当的值。
  11. #endif
  12. #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // 某些 CString 构造函数将是显式的
  13. // 关闭 MFC 对某些常见但经常被安全忽略的警告消息的隐藏
  14. #define _AFX_ALL_WARNINGS
  15. #include <afxwin.h>         // MFC core and standard components
  16. #include <afxext.h>         // MFC extensions
  17. #ifndef _AFX_NO_OLE_SUPPORT
  18. #include <afxole.h>         // MFC OLE classes
  19. #include <afxodlgs.h>       // MFC OLE dialog classes
  20. #include <afxdisp.h>        // MFC Automation classes
  21. #endif // _AFX_NO_OLE_SUPPORT
  22. #ifndef _AFX_NO_DB_SUPPORT
  23. #include <afxdb.h> // MFC ODBC database classes
  24. #endif // _AFX_NO_DB_SUPPORT
  25. #ifndef _AFX_NO_DAO_SUPPORT
  26. #include <afxdao.h> // MFC DAO database classes
  27. #endif // _AFX_NO_DAO_SUPPORT
  28. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  29. #ifndef _AFX_NO_AFXCMN_SUPPORT
  30. #include <afxcmn.h> // MFC support for Windows Common Controls
  31. #endif // _AFX_NO_AFXCMN_SUPPORT
  32. #include <afxsock.h> // MFC socket extensions
  33. #include <afxtempl.h>
  34. #include <afxmt.h> // CCriticalSection header files
  35. #include <math.h>
  36. // StkLib
  37. #include "../../StkLib/Include/StkLib.h"
  38. #include "Resource.h"
  39. #include <StkNet.h>
  40. HINSTANCE AfxGetModuleHandle();
  41. CString AfxModuleLoadString(UINT nID);