// stdafx.h : ±ê׼ϵͳ°üº¬ÎļþµÄ°üº¬Îļþ£¬
|
// »òÊǾ³£Ê¹Óõ«²»³£¸ü¸ÄµÄ
|
// ÌØ¶¨ÓÚÏîÄ¿µÄ°üº¬Îļþ
|
|
#pragma once
|
|
#ifndef VC_EXTRALEAN
|
#define VC_EXTRALEAN // ´Ó Windows Í·ÖÐÅųý¼«ÉÙʹÓõÄ×ÊÁÏ
|
#endif
|
|
#include "targetver.h"
|
|
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // ijЩ 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 <list>
|
#include <vector>
|
#include <map>
|
using namespace std;
|
|
// ¹¤¾ß
|
#include "..\\mbcommfunc\\mbcommfuncinclude.h"
|
#ifdef _DEBUG
|
#pragma comment(lib,"..\\Debug\\mbcommfuncUD.lib")
|
#else
|
#pragma comment(lib,"..\\Release\\mbcommfuncU.lib")
|
#endif
|
|
// ORG×éÖ¯½á¹¹ÈËÔ±´úÂë
|
#include "..\\mborg\\MBOrgInclude.h"
|
#include <afx.h>
|
#ifdef _DEBUG
|
#pragma comment(lib,"..\\Debug\\mborgUD.lib")
|
#else
|
#pragma comment(lib,"..\\Release\\mborgU.lib")
|
#endif
|
|
// sqlite3 ÒýÓÃÍ·Îļþ¼°¼ÓÔØ lib
|
#include "..\\OISQLite\\Include\\sqlite3.h"
|
#include "..\\OISQLite\\Include\\sqlite3Lib.h"
|
#include "..\\OISQLite\\Include\\OISQLiteLib.h"
|