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.

59 lines
1013 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. OptDlg.h : header file
  5. File History:
  6. JonY Apr-96 created
  7. --*/
  8. /////////////////////////////////////////////////////////////////////////////
  9. // COptionsDlg dialog
  10. class COptionsDlg : public CWizBaseDlg
  11. {
  12. DECLARE_DYNCREATE(COptionsDlg)
  13. // Construction
  14. public:
  15. COptionsDlg();
  16. ~COptionsDlg();
  17. // Dialog Data
  18. //{{AFX_DATA(COptionsDlg)
  19. enum { IDD = IDD_OPTIONS_DIALOG };
  20. BOOL m_bNW;
  21. BOOL m_bProfile;
  22. BOOL m_bRAS;
  23. BOOL m_bExchange;
  24. BOOL m_bHomeDir;
  25. BOOL m_bLoginScript;
  26. CString m_csCaption;
  27. //}}AFX_DATA
  28. // Overrides
  29. // ClassWizard generate virtual function overrides
  30. //{{AFX_VIRTUAL(COptionsDlg)
  31. public:
  32. virtual LRESULT OnWizardNext();
  33. protected:
  34. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. protected:
  38. // Generated message map functions
  39. //{{AFX_MSG(COptionsDlg)
  40. afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };