ftpfiledlg.h

来自「一个Visual c++ 实现的FTP文件遍历程序(网络编程)」· C头文件 代码 · 共 64 行

H
64
字号
// FtpFileDlg.h : header file
//

#if !defined(AFX_FTPFILEDLG_H__6E92CB1A_9C0D_4D5D_A366_1BA5431532CE__INCLUDED_)
#define AFX_FTPFILEDLG_H__6E92CB1A_9C0D_4D5D_A366_1BA5431532CE__INCLUDED_

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

#include <afxinet.h>
/////////////////////////////////////////////////////////////////////////////
// CFtpFileDlg dialog

class CFtpFileDlg : public CDialog
{
// Construction
public:
	CFtpFileDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CFtpFileDlg)
	enum { IDD = IDD_FTPFILE_DIALOG };
		// NOTE: the ClassWizard will add data members here
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CFtpFileDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	CInternetSession *m_pInetSession;	//创建并初始化Internet会话
	CFtpConnection *m_pFtpConnection;	//建立Ftp连接
	CString m_strFtpInfo;	//输出的消息
	int m_nIndex;			//用来产生层次的ftp输出目录
public:
	CString m_strHost;		//ftp地址
	CString m_strUserName;	//用户名
	CString m_strPassword;	//密码
	int m_nPort;			//端口
	// Generated message map functions
	//{{AFX_MSG(CFtpFileDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnEnChangeEdit1();
	afx_msg void OnBnClickedButtonList();
	afx_msg void OnDestroy();
    afx_msg void FileList();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_FTPFILEDLG_H__6E92CB1A_9C0D_4D5D_A366_1BA5431532CE__INCLUDED_)

⌨️ 快捷键说明

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