123456789101112131415161718192021222324252627282930313233343536 |
- #pragma once
- #include "targetver.h"
- #define WIN32_LEAN_AND_MEAN
- #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS
- #ifndef VC_EXTRALEAN
- #define VC_EXTRALEAN
- #endif
- #include <afx.h>
- #include <afxwin.h> // MFC 核心组件和标准组件
- #include <afxext.h> // MFC 扩展
- #ifndef _AFX_NO_OLE_SUPPORT
- #include <afxdtctl.h> // MFC 对 Internet Explorer 4 公共控件的支持
- #endif
- #ifndef _AFX_NO_AFXCMN_SUPPORT
- #include <afxcmn.h> // MFC 对 Windows 公共控件的支持
- #endif
- #include <iostream>
- #include <windows.h>
- #include <string>
- #include <Shlwapi.h>
- #include "CritSection.h"
- #include "Global.h"
- #include "Python.h"
|