StdAfx.h
上传用户:szopptop
上传日期:2013-04-23
资源大小:1047k
文件大小:2k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. // stdafx.h : include file for standard system include files,
  2. //  or project specific include files that are used frequently, but
  3. //      are changed infrequently
  4. //
  5. #if !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)
  6. #define AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. //#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
  11. #define UNICODE
  12. #define _UNICODE
  13. #include <winsock2.h>
  14. #include <windows.h>
  15. #include <process.h>
  16. #include <stdio.h>
  17. #include <tchar.h>
  18. #ifdef _DEBUG
  19. #include <crtdbg.h>
  20. #endif
  21. #pragma warning( disable : 4146 )
  22. #pragma warning(disable:4786)
  23. #include <commctrl.h>
  24. #include <time.h>
  25. #include "resource.h"
  26. #include "..DefEnDecode.h"
  27. #include "..DefServerSockHandler.h"
  28. #include "..DefQueue.h"
  29. #include "..DefMisc.h"
  30. #include "..DefList.h"
  31. #include "SelGate.h"
  32. #pragma comment (lib, "ws2_32.lib")
  33. #pragma comment (lib, "comctl32.lib")
  34. // **************************************************************************************
  35. #define _BMP_CX 16
  36. #define _BMP_CY 16
  37. #define _STATUS_HEIGHT 10
  38. #define _NUMOFMAX_STATUS_PARTS 4
  39. #define _SELGATE_SERVER_CLASS _T("SelGateServerClass")
  40. #define _SELGATE_SERVER_TITLE _T("Legend of Mir II - Select Gate Server")
  41. #define _SELGATE_SERVER_REGISTRY _T("Software\LegendOfMir\SelGate")
  42. #define _IDM_SERVERSOCK_MSG WM_USER + 1000
  43. #define _IDM_CLIENTSOCK_MSG _IDM_SERVERSOCK_MSG + 1
  44. #define _IDW_TOOLBAR _IDM_SERVERSOCK_MSG + 2
  45. #define _IDW_STATUSBAR _IDM_SERVERSOCK_MSG + 3
  46. #define _ID_TIMER_KEEPALIVE _IDM_SERVERSOCK_MSG + 4
  47. #define _ID_TIMER_CONNECTSERVER _IDM_SERVERSOCK_MSG + 5
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)