ESocket.cpp
上传用户:hkeb168
上传日期:2022-07-04
资源大小:5040k
文件大小:1k
源码类别:

Email客户端

开发平台:

Visual C++

  1. // ESocket.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "SendEMail.h"
  5. #include "ESocket.h"
  6. #include "SendEMailDlg.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CESocket
  14. CESocket::CESocket()
  15. {
  16. }
  17. CESocket::~CESocket()
  18. {
  19. }
  20. // Do not edit the following lines, which are needed by ClassWizard.
  21. #if 0
  22. BEGIN_MESSAGE_MAP(CESocket, CSocket)
  23. //{{AFX_MSG_MAP(CESocket)
  24. //}}AFX_MSG_MAP
  25. END_MESSAGE_MAP()
  26. #endif // 0
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CESocket member functions
  29. void CESocket::OnReceive(int nErrorCode) 
  30. {
  31. // TODO: Add your specialized code here and/or call the base class
  32. //重载OnReceive,在服务器有信息发送过来后调用
  33. m_dlg->ReceiveMessage(m_iCount);
  34. m_iCount++;
  35. CSocket::OnReceive(nErrorCode);
  36. }
  37. void CESocket::Init(CSendEMailDlg *dlg)
  38. {
  39. m_dlg=dlg;
  40. m_iCount=0;
  41. }