stdafx.h
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:1k
源码类别:

P2P编程

开发平台:

Visual C++

  1. /*
  2.  *  Openmysee
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2 of the License, or
  7.  *  (at your option) any later version.
  8.  *
  9.  *  This program is distributed in the hope that it will be useful,
  10.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *  GNU General Public License for more details.
  13.  *
  14.  *  You should have received a copy of the GNU General Public License
  15.  *  along with this program; if not, write to the Free Software
  16.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  *
  18.  */
  19. #ifndef __STDAFX_H_
  20. #define __STDAFX_H_
  21. #define WIN32_LEAN_AND_MEAN
  22. #define WINVER 0x400
  23. #define WM_TASKBARMSG WM_APP+1
  24. #define WM_CHANNELMGR_QUIT WM_APP+2
  25. #define WM_SENDTOLAYER1 WM_APP+3
  26. #define WM_SENDTOLOCALSERVER WM_APP+4
  27. #define WM_EXIT_EX      WM_APP+5
  28. #include "resource.h"
  29. #include <afxwin.h>
  30. #include <winsock2.h>
  31. #include <tchar.h>
  32. #include <assert.h>
  33. #include <process.h>
  34. #include <string>
  35. #include <map>
  36. #include "AutoLock.h"
  37. #include "../layer1/LayerDefine.h"
  38. #include "Structs.h"
  39. #include "MultiLanguageMgr.h"
  40. #ifdef UNICODE
  41. typedef std::wstring mystring;
  42. #else
  43. typedef std::string  mystring;
  44. #endif
  45. #endif