使用soui开发的mbc,只支持windows版本
w1146869587
2022-01-24 0408576e9da10015ffa9da0079b8c985113ce4b3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// stdafx.h : ±ê׼ϵͳ°üº¬ÎļþµÄ°üº¬Îļþ£¬
// »òÊǾ­³£Ê¹Óõ«²»³£¸ü¸ÄµÄ
// Ìض¨ÓÚÏîÄ¿µÄ°üº¬Îļþ
 
#pragma once
 
#ifndef VC_EXTRALEAN
#define VC_EXTRALEAN            // ´Ó Windows Í·ÖÐÅųý¼«ÉÙʹÓõÄ×ÊÁÏ
#endif
 
#include "targetver.h"
 
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS      // Ä³Ð© CString ¹¹Ô캯Êý½«ÊÇÏÔʽµÄ
 
#include <afxwin.h>         // MFC ºËÐÄ×é¼þºÍ±ê×¼×é¼þ
#include <afxext.h>         // MFC À©Õ¹
 
#ifndef _AFX_NO_OLE_SUPPORT
#include <afxole.h>         // MFC OLE Àà
#include <afxodlgs.h>       // MFC OLE ¶Ô»°¿òÀà
#include <afxdisp.h>        // MFC ×Ô¶¯»¯Àà
#endif // _AFX_NO_OLE_SUPPORT
 
#ifndef _AFX_NO_DB_SUPPORT
#include <afxdb.h>                      // MFC ODBC Êý¾Ý¿âÀà
#endif // _AFX_NO_DB_SUPPORT
 
#ifndef _AFX_NO_DAO_SUPPORT
#include <afxdao.h>                     // MFC DAO Êý¾Ý¿âÀà
#endif // _AFX_NO_DAO_SUPPORT
 
#ifndef _AFX_NO_OLE_SUPPORT
#include <afxdtctl.h>           // MFC ¶Ô Internet Explorer 4 ¹«¹²¿Ø¼þµÄÖ§³Ö
#endif
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h>                     // MFC ¶Ô Windows ¹«¹²¿Ø¼þµÄÖ§³Ö
#endif // _AFX_NO_AFXCMN_SUPPORT
 
#define  _CRT_SECURE_NO_WARNINGS
#define     DLL_SOUI
#include <souistd.h>
#include <core/SHostDialog.h>
#include <control/SMessageBox.h>
#include <control/souictrls.h>
#include <res.mgr/sobjdefattr.h>
#include <com-cfg.h>
#include "resource.h" 
using namespace SOUI;
 
#include <map>
#include <vector>
#include <list>
using namespace std;
 
 
#include "MBMacroDef.h"