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.

56 lines
1.0 KiB

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