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.

62 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. WelcomeDlg.h : header file
  5. CPropertyPage support for User mgmt wizard
  6. File History:
  7. JonY Apr-96 created
  8. --*/
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CWelcomeDlg dialog
  11. class CWelcomeDlg : public CWizBaseDlg
  12. {
  13. DECLARE_DYNCREATE(CWelcomeDlg)
  14. // Construction
  15. public:
  16. CWelcomeDlg();
  17. ~CWelcomeDlg();
  18. // Dialog Data
  19. //{{AFX_DATA(CWelcomeDlg)
  20. enum { IDD = IDD_WELCOME_DIALOG };
  21. CComboBox m_cbDomainList;
  22. //}}AFX_DATA
  23. virtual LRESULT OnWizardNext();
  24. // Overrides
  25. // ClassWizard generate virtual function overrides
  26. //{{AFX_VIRTUAL(CWelcomeDlg)
  27. protected:
  28. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. protected:
  32. // Generated message map functions
  33. //{{AFX_MSG(CWelcomeDlg)
  34. virtual BOOL OnInitDialog();
  35. afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. private:
  39. CString m_csPrimaryDomain;
  40. CString m_csDomain;
  41. CFont* m_pFont;
  42. CString m_csLastDomain;
  43. BOOL bParseGlobalGroup(LPTSTR lpGroupName, CString& lpName, CString& lpDomain);
  44. };