123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- #pragma once
- #ifndef VC_EXTRALEAN
- #define VC_EXTRALEAN
- #endif
- #ifndef WINVER
- #define WINVER 0x0501
- #endif
- #ifndef _WIN32_WINNT
- #define _WIN32_WINNT 0x0501
- #endif
- #ifndef _WIN32_WINDOWS
- #define _WIN32_WINDOWS 0x0501
- #endif
- #ifndef _WIN32_IE
- #define _WIN32_IE 0x0501
- #endif
- #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS
- #define _AFX_ALL_WARNINGS
- #define WIN32_LEAN_AND_MEAN
- #include <afxwin.h> // MFC 核心和标准组件
- #include <afxext.h> // MFC 扩展
- #include <afxdisp.h> // MFC 自动化类
- #include <afxdtctl.h> // Internet Explorer 4 公共控件的 MFC 支持
- #ifndef _AFX_NO_AFXCMN_SUPPORT
- #include <afxcmn.h> // Windows 公共控件的 MFC 支持
- #endif
- #include <afxtempl.h>
- #include "sizecbar.h"
- #include "DockPageBar.h"
- #include "AutoHideBar.h"
- #include "kernel.h"
- #pragma warning(disable:4267)
- #pragma warning(disable:4311)
- #pragma warning(disable:4312)
- #pragma warning(disable:4244)
- #include "Const.h"
- #include "resource.h"
- #include "Global.h"
- #include "MTVERIFY.H"
- #include <mmsystem.h>
- #pragma comment(lib,"winmm.lib")
- #define ULONG_PTR ULONG
- #include "gdiplus.h"
- using namespace Gdiplus;
- #pragma comment(lib, "gdiplus.lib")
- #if _MSC_VER >= 1800
- #pragma comment(lib, "legacy_stdio_definitions.lib")
- #endif
|