mailsocket.h
上传用户:qdlutongda
上传日期:2007-01-14
资源大小:133k
文件大小:2k
源码类别:

Email客户端

开发平台:

Visual C++

  1. #if !defined(AFX_MAILSOCKET_H__6B6A2627_F763_4AC1_B941_EDAB368C0F3B__INCLUDED_)
  2. #define AFX_MAILSOCKET_H__6B6A2627_F763_4AC1_B941_EDAB368C0F3B__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MailSocket.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CClientSocket command target
  10. class CClientSocket : public CAsyncSocket
  11. {
  12. DECLARE_DYNAMIC(CClientSocket);
  13. private:
  14. CClientSocket(const CClientSocket& rSrc);         // no implementation
  15. void operator=(const CClientSocket& rSrc);  // no implementation
  16. // Construction
  17. public:
  18. CClientSocket();
  19. virtual int Send(const void* lpBuf, int nBufLen, int nFlags = 0);
  20. // Attributes
  21. public:
  22. int m_nMsgCount;
  23. // CInetServerDlg* m_pDoc;
  24. // Overridable callbacks
  25. protected:
  26. virtual void OnReceive(int nErrorCode);
  27. virtual void OnClose( int nErrorCode );
  28. virtual void OnConnect(int nErrorCode);
  29. // Implementation
  30. public:
  31. };
  32. /////////////////////////////////////////////////////////////////////////////
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CListeningSocket command target
  35. class CListeningSocket : public CAsyncSocket
  36. {
  37. DECLARE_DYNAMIC(CListeningSocket);
  38. private:
  39. CListeningSocket(const CListeningSocket& rSrc);         // no implementation
  40. void operator=(const CListeningSocket& rSrc);  // no implementation
  41. // Construction
  42. public:
  43. CListeningSocket();
  44. // Attributes
  45. public:
  46. // CInetServerDlg* m_pDoc;
  47. // Overridable callbacks
  48. protected:
  49. virtual void OnAccept(int nErrorCode);
  50. // Implementation
  51. public:
  52. virtual ~CListeningSocket();
  53. };
  54. /////////////////////////////////////////////////////////////////////////////
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_MAILSOCKET_H__6B6A2627_F763_4AC1_B941_EDAB368C0F3B__INCLUDED_)