NewSocket.cpp
上传用户:huazhu2004
上传日期:2022-06-27
资源大小:1929k
文件大小:1k
源码类别:

ICQ/即时通讯

开发平台:

Visual C++

  1. // NewSocket.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Test.h"
  5. #include "NewSocket.h"
  6. #include "TestDlg.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CNewSocket
  14. CNewSocket::CNewSocket()
  15. {
  16. }
  17. CNewSocket::~CNewSocket()
  18. {
  19. }
  20. // Do not edit the following lines, which are needed by ClassWizard.
  21. #if 0
  22. BEGIN_MESSAGE_MAP(CNewSocket, CSocket)
  23. //{{AFX_MSG_MAP(CNewSocket)
  24. //}}AFX_MSG_MAP
  25. END_MESSAGE_MAP()
  26. #endif // 0
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CNewSocket member functions
  29. void CNewSocket::OnAccept(int nErrorCode) 
  30. {
  31.     if (m_dlg->m_ClientSocket==NULL) m_dlg->OnAccept();
  32.     CSocket::OnAccept(nErrorCode);
  33. }
  34. void CNewSocket::OnReceive(int nErrorCode) 
  35. {
  36.     m_dlg->OnReceive();
  37. CSocket::OnReceive(nErrorCode);
  38. }
  39. void CNewSocket::GetDlg(CTestDlg *dlg)
  40. {
  41.     m_dlg=dlg;
  42. }
  43. void CNewSocket::OnClose(int nErrorCode) 
  44. {
  45. m_dlg->OnClose();
  46. CSocket::OnClose(nErrorCode);
  47. }