Leaked source code of windows server 2003
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.

58 lines
1.2 KiB

  1. // SnapMgr.h : header file for Snapin Manager property page
  2. //
  3. #ifndef __SNAPMGR_H__
  4. #define __SNAPMGR_H__
  5. #include "cookie.h"
  6. #include "chooser.h"
  7. // forward declarations
  8. class CFileMgmtComponentData;
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CFileMgmtGeneral dialog
  11. class CFileMgmtGeneral : public CChooseMachinePropPage
  12. {
  13. // DECLARE_DYNCREATE(CFileMgmtGeneral)
  14. // Construction
  15. public:
  16. CFileMgmtGeneral();
  17. virtual ~CFileMgmtGeneral();
  18. // Dialog Data
  19. //{{AFX_DATA(CFileMgmtGeneral)
  20. int m_iRadioObjectType;
  21. //}}AFX_DATA
  22. // Overrides
  23. // ClassWizard generate virtual function overrides
  24. //{{AFX_VIRTUAL(CFileMgmtGeneral)
  25. public:
  26. virtual BOOL OnWizardFinish();
  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(CFileMgmtGeneral)
  34. //}}AFX_MSG
  35. DECLARE_MESSAGE_MAP()
  36. protected:
  37. // User defined member variables
  38. class CFileMgmtComponentData * m_pFileMgmtData;
  39. public:
  40. void SetFileMgmtComponentData(CFileMgmtComponentData * pFileMgmtData);
  41. }; // CFileMgmtGeneral
  42. #endif // ~__SNAPMGR_H__