HistoryQueue.h
资源名称:FTP总集.rar [点击查看]
上传用户:tjfeida
上传日期:2013-03-10
资源大小:1917k
文件大小:1k
源码类别:
Ftp客户端
开发平台:
Visual C++
- // HistoryQueue.h: interface for the CHistoryQueue class.
- //
- //////////////////////////////////////////////////////////////////////
- /*********************************************
- **该文件是属于WolfFTP工程中的。如果有什么问题
- **请联系
- ** tablejiang@21cn.com
- **或者访问
- ** http://wolfftp.51.net
- **以得到最新的支持。
- *********************************************/
- #if !defined(AFX_HISTORYQUEUE_H__C9F22E0A_C1AE_4136_8D5F_CC3ED53471D9__INCLUDED_)
- #define AFX_HISTORYQUEUE_H__C9F22E0A_C1AE_4136_8D5F_CC3ED53471D9__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- #include "FtpObject.h"
- struct HISTORYINFO
- {
- char historypath[MAX_PATH] ;
- FTPITEM* pFtpItem ;
- HISTORYINFO* pNext ;
- } ;
- /***********************************************************
- ** @Description:
- ** this class is use for store and manage the history
- ** directory file list .
- **
- ** @Note:
- **
- **
- ** @Author: JHM
- ** e-mail: tablejiang@21cn.com
- ** Date: 2001 3 26
- ***********************************************************/
- class CHistoryQueue
- {
- public:
- CHistoryQueue();
- virtual ~CHistoryQueue();
- public:
- void DeleteAllItem( );
- int AddItem( FTPITEM* pItem , LPSTR szPath );
- HISTORYINFO* FindInHistory( LPSTR szPath );
- protected:
- BOOL DeleteFtpItem( FTPITEM* pFtpItem );
- HISTORYINFO* m_pHistoryHead ;
- };
- #endif // !defined(AFX_HISTORYQUEUE_H__C9F22E0A_C1AE_4136_8D5F_CC3ED53471D9__INCLUDED_)