ChatSocket.cpp
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ChatSocket.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ex126Client.h"
  5. #include "ChatSocket.h"
  6. #include "ex126ClientDlg.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CChatSocket
  14. CChatSocket::CChatSocket()
  15. {
  16. }
  17. CChatSocket::~CChatSocket()
  18. {
  19. }
  20. // Do not edit the following lines, which are needed by ClassWizard.
  21. #if 0
  22. BEGIN_MESSAGE_MAP(CChatSocket, CSocket)
  23. //{{AFX_MSG_MAP(CChatSocket)
  24. //}}AFX_MSG_MAP
  25. END_MESSAGE_MAP()
  26. #endif // 0
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CChatSocket member functions
  29. CChatSocket::CChatSocket(CEx126ClientDlg *pDlg)
  30. {
  31. m_pDlg=pDlg;
  32. }
  33. void CChatSocket::OnReceive(int nErrorCode) 
  34. {
  35. CSocket::OnReceive(nErrorCode);
  36. //让主对话框处理数据
  37. if(m_pDlg)
  38. m_pDlg->ProcessPendingRead();
  39. }