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.

60 lines
1.1 KiB

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