| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // stdafx.h : include file for standard system include files,
- // or project specific include files that are used frequently,
- // but are changed infrequently
- #pragma once
- //#define _WIN32_WINNT _WIN32_WINNT_WINXP
- //#define _WIN32_WINNT _WIN32_WINNT_WIN7
- #define _USE_MFC
- //#define _DETECT_MEMORY_LEAK
- #include <afxwin.h> // MFC 核心组件和标准组件
- #include <afxext.h> // MFC 扩展
- #include <afxdisp.h> // MFC 自动化类
- #include <afxmt.h>
- #include <afxcmn.h>
- #include <afxcontrolbars.h>
- #include <Windows.h>
- #define ACDMSG_RECMSG WM_USER+104
- //#define ANTUMIDDLEWARE
- #define ISUSEDYAMLCONFIG
- #include "YamlConfig.h"
- #include "..\public\GlobalDef/AgentInfoInc.h"
- // 分机信息相关头文件
- #include "..\public\GlobalDef/DevInfoInc.h"
- #include "..\wsClient\NetInterface.h"
- #include "..\public\pdu\PduEntity.h"
- #include "..\public\pdu\PduDataFormat.h"
- #include "G_AgentDef.h"
- #include "json.h"
- #include "ExceptionHandler.h"
- #include "../Logger/Logger.h"
- #pragma comment(lib,"Logger.lib")
- #pragma comment(lib,"CrashDump.lib")
- #pragma comment(lib,"dbghelp.lib")
- #include "..\RcfClient\RcfClient.h"
- #pragma comment(lib,"RcfClient.lib")
- extern HWND hwndd;
|