⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ftpeventsink.h

📁 It can also accept a number of ftp connection (multithreaded), and with most of the commercial ftp s
💻 H
字号:
// FTPEventSink.h: interface for the CFTPEventSink class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_FTPEVENTSINK_H__D8B6FF57_D431_11D5_AB13_00D0B70C3D79__INCLUDED_)
#define AFX_FTPEVENTSINK_H__D8B6FF57_D431_11D5_AB13_00D0B70C3D79__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CFTPEventSink  
{
public:
	CFTPEventSink();
	virtual ~CFTPEventSink();

	virtual void OnFTPUserConnected(DWORD nThreadID, LPCTSTR lpszUser, LPCSTR lpszAddress) {};
	virtual void OnFTPUserDisconnected(DWORD nThreadID, LPCTSTR lpszUser) {};
	virtual void OnFTPStatusChange(int nType, LPCTSTR lpszText) {};
	virtual void OnFTPReceivedBytesChange(int nBytes) {};
	virtual void OnFTPSentBytesChange(int nBytes) {};
	virtual void OnFTPStatisticChange(int nType, int nValue) {};
};

#endif // !defined(AFX_FTPEVENTSINK_H__D8B6FF57_D431_11D5_AB13_00D0B70C3D79__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -