使用soui开发的mbc,只支持windows版本
w1146869587
2022-01-24 479b1995ef435713c2cf4f0da8de3a6af6c30922
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// stdafx.h : ±ê׼ϵͳ°üº¬ÎļþµÄ°üº¬Îļþ£¬
// »òÊǾ­³£Ê¹Óõ«²»³£¸ü¸ÄµÄ
// Ìض¨ÓÚÏîÄ¿µÄ°üº¬Îļþ
 
#pragma once
 
#ifndef VC_EXTRALEAN
#define VC_EXTRALEAN            // ´Ó Windows Í·ÖÐÅųý¼«ÉÙʹÓõÄ×ÊÁÏ
#endif
 
#include "targetver.h"
 
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS      // Ä³Ð© CString ¹¹Ô캯Êý½«ÊÇÏÔʽµÄ
 
 
#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
 
 
 
#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 <helper/SAdapterBase.h>
 
#include <queue>
using namespace SOUI;
 
///////////cef////////////////////////////////////////////
//#include <cef_client.h>
//#include <cef_app.h>
//#include <capi/cef_app_capi.h>
//
//#include <sstream>
//#include <string>
//
//#include <base/cef_bind.h>
//#include <wrapper/cef_closure_task.h>
//#include <cef_app.h>
//#include <cef_base.h>
//#include <base/cef_lock.h>
//#include <wrapper/cef_helpers.h>
 
 
// ÒýÈëÀ©Õ¹µÄdll
#include "..\\mbExtControl\\mbExtControlInclude.h"
#ifdef _DEBUG
#pragma comment(lib,"..\\Debug\\mbExtControlUD.lib")
#else
#pragma comment(lib,"..\\Release\\mbExtControlU.lib")
#endif