Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
1.4 KiB

  1. /*++
  2. Copyright (c) 1994-1998 Microsoft Corporation
  3. Module Name :
  4. fmessage.h
  5. Abstract:
  6. FTP Message property page
  7. Author:
  8. Ronald Meijer (ronaldm)
  9. Project:
  10. Internet Services Manager
  11. Revision History:
  12. --*/
  13. class CFtpMessagePage : public CInetPropertyPage
  14. /*++
  15. Class Description:
  16. FTP Messages property page
  17. Public Interface:
  18. CFtpMessagePage : Constructor
  19. ~CFtpMessagePage : Destructor
  20. --*/
  21. {
  22. DECLARE_DYNCREATE(CFtpMessagePage)
  23. //
  24. // Construction
  25. //
  26. public:
  27. CFtpMessagePage(
  28. IN CInetPropertySheet * pSheet = NULL
  29. );
  30. ~CFtpMessagePage();
  31. //
  32. // Dialog Data
  33. //
  34. protected:
  35. //{{AFX_DATA(CFtpMessagePage)
  36. enum { IDD = IDD_MESSAGES };
  37. CString m_strExitMessage;
  38. CString m_strMaxConMsg;
  39. CString m_strWelcome;
  40. CEdit m_edit_Exit;
  41. CEdit m_edit_MaxCon;
  42. //}}AFX_DATA
  43. HMODULE m_hInstRichEdit;
  44. //
  45. // Overrides
  46. //
  47. protected:
  48. virtual HRESULT FetchLoadedValues();
  49. virtual HRESULT SaveInfo();
  50. // ClassWizard generate virtual function overrides
  51. //{{AFX_VIRTUAL(CFtpMessagePage)
  52. protected:
  53. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  54. //}}AFX_VIRTUAL
  55. //
  56. // Implementation
  57. //
  58. protected:
  59. // Generated message map functions
  60. //{{AFX_MSG(CFtpMessagePage)
  61. virtual BOOL OnInitDialog();
  62. //}}AFX_MSG
  63. afx_msg void OnItemChanged();
  64. DECLARE_MESSAGE_MAP()
  65. };