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

棋牌游戏

开发平台:

Visual C++

  1. // MySocket.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ttq.h"
  5. #include "MySocket.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMySocket
  13. CMySocket::CMySocket()
  14. {
  15. }
  16. CMySocket::~CMySocket()
  17. {
  18. }
  19. // Do not edit the following lines, which are needed by ClassWizard.
  20. #if 0
  21. BEGIN_MESSAGE_MAP(CMySocket, CAsyncSocket)
  22. //{{AFX_MSG_MAP(CMySocket)
  23. //}}AFX_MSG_MAP
  24. END_MESSAGE_MAP()
  25. #endif // 0
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CMySocket member functions
  28. void CMySocket::SetParent(CWnd *pWnd)
  29. {
  30. // Set the member pointer
  31. m_pWnd = pWnd;
  32. }
  33. void CMySocket::OnAccept(int nErrorCode) 
  34. {
  35. // TODO: Add your specialized code here and/or call the base class
  36. CAsyncSocket::OnAccept(nErrorCode);
  37. }
  38. void CMySocket::OnClose(int nErrorCode) 
  39. {
  40. // TODO: Add your specialized code here and/or call the base class
  41. CAsyncSocket::OnClose(nErrorCode);
  42. }
  43. void CMySocket::OnConnect(int nErrorCode) 
  44. {
  45. // TODO: Add your specialized code here and/or call the base class
  46. CAsyncSocket::OnConnect(nErrorCode);
  47. }
  48. void CMySocket::OnSend(int nErrorCode) 
  49. {
  50. // TODO: Add your specialized code here and/or call the base class
  51. CAsyncSocket::OnSend(nErrorCode);
  52. }
  53. void CMySocket::OnReceive(int nErrorCode) 
  54. {
  55. // TODO: Add your specialized code here and/or call the base class
  56. CAsyncSocket::OnReceive(nErrorCode);
  57. }