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 UNICODE
  11. #define _UNICODE
  12. //#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
  13. #pragma warning( disable : 4146 )
  14. #include <winsock2.h>
  15. #include <windows.h>
  16. #include <tchar.h>
  17. #include <crtdbg.h>
  18. #include <commctrl.h>
  19. #include <time.h>
  20. #include <process.h>
  21. #include "resource.h"
  22. #include "..DefEnDecode.h"
  23. #include "..DefServerSockHandler.h"
  24. #include "..DefMisc.h"
  25. #include "..DefProtocol.h"
  26. #include "..DefQueue.h"
  27. #include "..DefList.h"
  28. #include "LoginSvr.h"
  29. #pragma comment (lib, "ws2_32.lib")
  30. #pragma comment (lib, "comctl32.lib")
  31. // **************************************************************************************
  32. #define _LOGIN_SERVER_CLASS _TEXT("LoginServerClass")
  33. #define _LOGIN_SERVER_TITLE _TEXT("Login Server - Legend of Mir II")
  34. #define _LOGIN_SERVER_REGISTRY _TEXT("Software\LegendOfMir\LoginSvr")
  35. #define _LOGIN_SERVERLIST_REGISTRY _TEXT("Software\LegendOfMir\LoginSvr\Servers")
  36. #define _STATUS_HEIGHT 10
  37. #define _NUMOFMAX_STATUS_PARTS 7
  38.     
  39. #define _IDM_GATECOMMSOCK_MSG WM_USER + 1000
  40. #define _IDM_CLIENTSOCK_MSG _IDM_GATECOMMSOCK_MSG + 1
  41. #define _IDW_TOOLBAR _IDM_GATECOMMSOCK_MSG + 2
  42. #define _IDW_STATUSBAR _IDM_GATECOMMSOCK_MSG + 3
  43. //{{AFX_INSERT_LOCATION}}
  44. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  45. #endif // !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)