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

书籍源码

开发平台:

Visual C++

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