MyServer.h
上传用户:cjw5120
上传日期:2022-05-11
资源大小:5032k
文件大小:2k
源码类别:

网络截获/分析

开发平台:

Visual C++

  1. // MyServer.h : main header file for the MYSERVER application
  2. //
  3. #if !defined(AFX_MYSERVER_H__90C98308_8550_4968_8832_E59BD6B8F97F__INCLUDED_)
  4. #define AFX_MYSERVER_H__90C98308_8550_4968_8832_E59BD6B8F97F__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #ifndef __AFXWIN_H__
  9. #error include 'stdafx.h' before including this file for PCH
  10. #endif
  11. #include "resource.h" // main symbols
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CMyServerApp:
  14. // See MyServer.cpp for the implementation of this class
  15. //
  16. /*
  17.  作者:海啸 lyyer English Name: Jack 
  18.   blog:http://lyyer.blog.sohu.com
  19.   website:http://www.cnGSG.com
  20.   海啸网络安全组织
  21. */
  22. class CMyServerApp : public CWinApp
  23. {
  24. public:
  25. CMyServerApp();
  26. // HANDLE hOneInstanceMutex; // 保证程序只运行一次的互斥对象
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CMyServerApp)
  30. public:
  31. virtual BOOL InitInstance();
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. //{{AFX_MSG(CMyServerApp)
  35. // NOTE - the ClassWizard will add and remove member functions here.
  36. //    DO NOT EDIT what you see in these blocks of generated code !
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. };
  40. /////////////////////////////////////////////////////////////////////////////
  41. //{{AFX_INSERT_LOCATION}}
  42. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  43. #endif // !defined(AFX_MYSERVER_H__90C98308_8550_4968_8832_E59BD6B8F97F__INCLUDED_)