POP.H
上传用户:chenhai826
上传日期:2007-04-11
资源大小:72k
文件大小:1k
源码类别:

破解

开发平台:

Visual C++

  1. // Pop.h : main header file for the POP application
  2. //
  3. #if !defined(AFX_POP_H__A44B38B6_697C_11D1_881E_00001C302581__INCLUDED_)
  4. #define AFX_POP_H__A44B38B6_697C_11D1_881E_00001C302581__INCLUDED_
  5. #if _MSC_VER >= 1000
  6. #pragma once
  7. #endif // _MSC_VER >= 1000
  8. #ifndef __AFXWIN_H__
  9. #error include 'stdafx.h' before including this file for PCH
  10. #endif
  11. #include "resource.h" // main symbols
  12. #include "MySocket.h"
  13. class CPop  
  14. {
  15. public:
  16. int Connect(CString& Host, CString& User, int Password);
  17. void Disconnect(void);
  18. CPop();
  19. virtual ~CPop();
  20. private:
  21. int CheckResponse();
  22. CMySocket m_PopServer;
  23. };
  24. //{{AFX_INSERT_LOCATION}}
  25. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  26. #endif // !defined(AFX_POP_H__A44B38B6_697C_11D1_881E_00001C302581__INCLUDED_)