ftpserverdlg.h

来自「FTP上传工具,FTP上传的小例子,包括定制时间上传功能」· C头文件 代码 · 共 72 行

H
72
字号
// FtpServerDlg.h : header file
//

#if !defined(AFX_FTPSERVERDLG_H__D7466A6B_7B47_443C_8031_FB885886DB0B__INCLUDED_)
#define AFX_FTPSERVERDLG_H__D7466A6B_7B47_443C_8031_FB885886DB0B__INCLUDED_

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

#include "MyTask.h"
#include "Display.h"
#include "TaskManager.h"
#include "ColorListBox.h"
/////////////////////////////////////////////////////////////////////////////
// CFtpServerDlg dialog

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

// Dialog Data
	//{{AFX_DATA(CFtpServerDlg)
	enum { IDD = IDD_FTPSERVER_DIALOG };
	CColorListBox	m_listbox;
	BOOL	m_bCheck_Error;
	BOOL	m_bCheck_Normal;
	BOOL	m_bCheck_ShowTime;
	BOOL	m_bCheck_Warn;
	//}}AFX_DATA

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

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CFtpServerDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnTimer(UINT nIDEvent);
	afx_msg void OnCheckNormal();
	afx_msg void OnCheckWarn();
	afx_msg void OnCheckError();
	afx_msg void OnCheckShowtime();
	afx_msg void OnStart();
	afx_msg void OnButtonStart();
	virtual void OnCancel();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

public:
    BOOL bStrat;
	CDisplay m_Log;
//	CMyTask *myTask;

};

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

#endif // !defined(AFX_FTPSERVERDLG_H__D7466A6B_7B47_443C_8031_FB885886DB0B__INCLUDED_)

⌨️ 快捷键说明

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