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.

54 lines
1019 B

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