ServerSocket.h
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:1k
源码类别:

游戏

开发平台:

Visual C++

  1. #if !defined(AFX_SERVERSOCKET_H__124E26CF_1EC6_491D_BB7F_7663663D1D4F__INCLUDED_)
  2. #define AFX_SERVERSOCKET_H__124E26CF_1EC6_491D_BB7F_7663663D1D4F__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ServerSocket.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CServerSocket command target
  10. #include "afxsock.h"
  11. class CExample2_ChatRoomDlg;
  12. class CServerSocket : public CSocket
  13. {
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. CServerSocket();
  19. virtual ~CServerSocket();
  20. // Overrides
  21. public:
  22. CExample2_ChatRoomDlg * m_dlg;
  23. UINT m_uPort;
  24. BOOL Init(UINT port, CExample2_ChatRoomDlg* dlg);
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CServerSocket)
  27. public:
  28. virtual void OnAccept(int nErrorCode);
  29. //}}AFX_VIRTUAL
  30. // Generated message map functions
  31. //{{AFX_MSG(CServerSocket)
  32. // NOTE - the ClassWizard will add and remove member functions here.
  33. //}}AFX_MSG
  34. // Implementation
  35. protected:
  36. };
  37. /////////////////////////////////////////////////////////////////////////////
  38. //{{AFX_INSERT_LOCATION}}
  39. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  40. #endif // !defined(AFX_SERVERSOCKET_H__124E26CF_1EC6_491D_BB7F_7663663D1D4F__INCLUDED_)