诸暨麻将添加redis
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

94 lines
2.3 KiB

  1. #pragma once
  2. //////////////////////////////////////////////////////////////////////////////////
  3. #ifndef VC_EXTRALEAN
  4. #define VC_EXTRALEAN
  5. #endif
  6. #ifndef WINVER
  7. #define WINVER 0x0501
  8. #endif
  9. #ifndef _WIN32_WINNT
  10. #define _WIN32_WINNT 0x0501
  11. #endif
  12. #ifndef _WIN32_WINDOWS
  13. #define _WIN32_WINDOWS 0x0410
  14. #endif
  15. #ifndef _WIN32_IE
  16. #define _WIN32_IE 0x0400
  17. #endif
  18. #define _ATL_ATTRIBUTES
  19. #define _AFX_ALL_WARNINGS
  20. #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS
  21. //////////////////////////////////////////////////////////////////////////////////
  22. //MFC 文件
  23. #include <AfxWin.h>
  24. #include <AfxExt.h>
  25. #include <AfxCmn.h>
  26. #include <AfxDisp.h>
  27. //编译环境
  28. //#include "..\..\..\SDKCondition.h"
  29. //////////////////////////////////////////////////////////////////////////////////
  30. #ifdef SDK_CONDITION
  31. //////////////////////////////////////////////////////////////////////////////////
  32. //开发环境
  33. //平台环境
  34. #include "..\..\..\开发库\Include\GameServiceHead.h"
  35. #ifndef _DEBUG
  36. #ifndef _UNICODE
  37. #pragma comment (lib,"../../../开发库/Lib/Ansi/KernelEngine.lib")
  38. #else
  39. #pragma comment (lib,"../../../开发库/Lib/Unicode/KernelEngine.lib")
  40. #endif
  41. #else
  42. #ifndef _UNICODE
  43. #pragma comment (lib,"../../../开发库/Lib/Ansi/KernelEngineD.lib")
  44. #else
  45. #pragma comment (lib,"../../../开发库/Lib/Unicode/KernelEngineD.lib")
  46. #endif
  47. #endif
  48. //////////////////////////////////////////////////////////////////////////////////
  49. #else
  50. //////////////////////////////////////////////////////////////////////////////////
  51. //系统环境
  52. //平台环境
  53. #include "..\..\..\..\Source\ServerControl\GameService\GameServiceHead.h"
  54. #ifndef _DEBUG
  55. #ifndef _UNICODE
  56. #pragma comment (lib,"../../../../系统模块/链接库/Ansi/KernelEngine.lib")
  57. #else
  58. #pragma comment (lib,"../../../../Source/Libs/Release_Unicode/KernelEngine.lib")
  59. #endif
  60. #else
  61. #ifndef _UNICODE
  62. #pragma comment (lib,"../../../../系统模块/链接库/Ansi/KernelEngineD.lib")
  63. #else
  64. #pragma comment (lib,"../../../../Source/Libs/Debug_Unicode/KernelEngineD.lib")
  65. #endif
  66. #endif
  67. //////////////////////////////////////////////////////////////////////////////////
  68. #endif // SDK_CONDITION
  69. //////////////////////////////////////////////////////////////////////////
  70. //组件头文件
  71. #include "..\消息定义\CMD_Sparrow.h"
  72. //////////////////////////////////////////////////////////////////////////