MessSocket.cpp
上传用户:jnhwc1
上传日期:2022-07-09
资源大小:100k
文件大小:1k
源码类别:

进程与线程

开发平台:

Visual C++

  1. // MessSocket.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "NeighborInfo.h"
  5. #include "MessSocket.h"
  6. #include "NeighborInfoDlg.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CMessSocket
  14. CMessSocket::CMessSocket()
  15. {
  16. }
  17. CMessSocket::~CMessSocket()
  18. {
  19. }
  20. // Do not edit the following lines, which are needed by ClassWizard.
  21. #if 0
  22. BEGIN_MESSAGE_MAP(CMessSocket, CSocket)
  23. //{{AFX_MSG_MAP(CMessSocket)
  24. //}}AFX_MSG_MAP
  25. END_MESSAGE_MAP()
  26. #endif // 0
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CMessSocket member functions
  29. void CMessSocket::OnReceive(int nErrorCode) 
  30. {
  31. // TODO: Add your specialized code here and/or call the base class
  32. m_dlg->ReceiveMessage();
  33. CSocket::OnReceive(nErrorCode);
  34. }
  35. void CMessSocket::Init(CNeighborInfoDlg *dlg)
  36. {
  37. m_dlg=dlg;
  38. }