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.

69 lines
1.4 KiB

  1. /*++
  2. 1998 Seagate Software, Inc. All rights reserved
  3. Module Name:
  4. PrMrSts.h
  5. Abstract:
  6. Status page for single select, multiple select, and folder of volumes.
  7. Author:
  8. Art Bragg [artb] 01-DEC-1997
  9. Revision History:
  10. --*/
  11. #ifndef _PRMRSTS_H
  12. #define _PRMRSTS_H
  13. #pragma once
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CPrMrSts dialog
  16. class CPrMrSts : public CSakVolPropPage
  17. {
  18. // Construction
  19. public:
  20. CPrMrSts( BOOL doAll = FALSE);
  21. ~CPrMrSts();
  22. // Dialog Data
  23. //{{AFX_DATA(CPrMrSts)
  24. enum { IDD = IDD_PROP_MANRES_STATUS };
  25. //}}AFX_DATA
  26. // Overrides
  27. // ClassWizard generate virtual function overrides
  28. //{{AFX_VIRTUAL(CPrMrSts)
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34. // Generated message map functions
  35. //{{AFX_MSG(CPrMrSts)
  36. virtual BOOL OnInitDialog();
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. public:
  40. // Unmarshalled pointer to managed resource
  41. CComPtr <IFsaResource> m_pFsaResource;
  42. CComPtr <IFsaResource> m_pFsaResourceList;
  43. private:
  44. BOOL m_DoAll;
  45. };
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  48. //}}AFX
  49. #endif