中间件底层,websocket

stdafx.h 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // stdafx.h : include file for standard system include files,
  2. // or project specific include files that are used frequently,
  3. // but are changed infrequently
  4. #pragma once
  5. //#define _WIN32_WINNT _WIN32_WINNT_WINXP
  6. //#define _WIN32_WINNT _WIN32_WINNT_WIN7
  7. #define _USE_MFC
  8. //#define _DETECT_MEMORY_LEAK
  9. #include <afxwin.h> // MFC 核心组件和标准组件
  10. #include <afxext.h> // MFC 扩展
  11. #include <afxdisp.h> // MFC 自动化类
  12. #include <afxmt.h>
  13. #include <afxcmn.h>
  14. #include <afxcontrolbars.h>
  15. #include <Windows.h>
  16. #define ACDMSG_RECMSG WM_USER+104
  17. //#define ANTUMIDDLEWARE
  18. #define ISUSEDYAMLCONFIG
  19. #include "YamlConfig.h"
  20. #include "..\public\GlobalDef/AgentInfoInc.h"
  21. // 分机信息相关头文件
  22. #include "..\public\GlobalDef/DevInfoInc.h"
  23. #include "..\wsClient\NetInterface.h"
  24. #include "..\public\pdu\PduEntity.h"
  25. #include "..\public\pdu\PduDataFormat.h"
  26. #include "G_AgentDef.h"
  27. #include "json.h"
  28. #include "ExceptionHandler.h"
  29. #include "../Logger/Logger.h"
  30. #pragma comment(lib,"Logger.lib")
  31. #pragma comment(lib,"CrashDump.lib")
  32. #pragma comment(lib,"dbghelp.lib")
  33. #include "..\RcfClient\RcfClient.h"
  34. #pragma comment(lib,"RcfClient.lib")
  35. extern HWND hwndd;