MySocket.h
上传用户:hlqcw8
上传日期:2007-01-08
资源大小:438k
文件大小:1k
源码类别:

棋牌游戏

开发平台:

Visual C++

  1. #if !defined(AFX_MYSOCKET_H__98398EA1_344E_11D5_8041_444553540000__INCLUDED_)
  2. #define AFX_MYSOCKET_H__98398EA1_344E_11D5_8041_444553540000__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MySocket.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CMySocket command target
  10. class CMySocket : public CAsyncSocket
  11. {
  12. // Attributes
  13. public:
  14. void SetParent(CWnd* pWnd);
  15. // Operations
  16. public:
  17. CMySocket();
  18. virtual ~CMySocket();
  19. // Overrides
  20. public:
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CMySocket)
  23. public:
  24. virtual void OnAccept(int nErrorCode);
  25. virtual void OnClose(int nErrorCode);
  26. virtual void OnConnect(int nErrorCode);
  27. virtual void OnSend(int nErrorCode);
  28. virtual void OnReceive(int nErrorCode);
  29. //}}AFX_VIRTUAL
  30. // Generated message map functions
  31. //{{AFX_MSG(CMySocket)
  32. // NOTE - the ClassWizard will add and remove member functions here.
  33. //}}AFX_MSG
  34. // Implementation
  35. protected:
  36. private:
  37. CWnd * m_pWnd;
  38. };
  39. /////////////////////////////////////////////////////////////////////////////
  40. //{{AFX_INSERT_LOCATION}}
  41. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  42. #endif // !defined(AFX_MYSOCKET_H__98398EA1_344E_11D5_8041_444553540000__INCLUDED_)