FtpClientDlg.h
上传用户:shjunxiao
上传日期:2022-01-25
资源大小:7105k
文件大小:2k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. // FtpClientDlg.h : header file
  2. //
  3. #if !defined(AFX_FTPCLIENTDLG_H__B49C2A27_20A4_455D_B1BB_7B8156967BFA__INCLUDED_)
  4. #define AFX_FTPCLIENTDLG_H__B49C2A27_20A4_455D_B1BB_7B8156967BFA__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CFtpClientDlg dialog
  10. struct FILEINFO
  11. {
  12. CString fName;
  13. CString fLength;
  14. };
  15. class CFtpClientDlg : public CDialog
  16. {
  17. // Construction
  18. public:
  19. CFtpClientDlg(CWnd* pParent = NULL); // standard constructor
  20. // Dialog Data
  21. //{{AFX_DATA(CFtpClientDlg)
  22. enum { IDD = IDD_FTPCLIENT_DIALOG };
  23. CButton m_put_file;
  24. CButton m_connect;
  25. CString m_port;
  26. CString m_IP;
  27. //}}AFX_DATA
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CFtpClientDlg)
  30. protected:
  31. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. protected:
  35. HICON m_hIcon;
  36. // Generated message map functions
  37. //{{AFX_MSG(CFtpClientDlg)
  38. virtual BOOL OnInitDialog();
  39. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  40. afx_msg void OnPaint();
  41. afx_msg HCURSOR OnQueryDragIcon();
  42. afx_msg void OnConnect();
  43. afx_msg void OnPutFile();
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. private:
  47. SOCKET m_sock;
  48. };
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_FTPCLIENTDLG_H__B49C2A27_20A4_455D_B1BB_7B8156967BFA__INCLUDED_)