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.

56 lines
1.0 KiB

  1. /*++
  2. Copyright (c) 1994-95 Microsoft Corporation
  3. Module Name:
  4. mappsht.h
  5. Abstract:
  6. Mapping property sheet implementation.
  7. Author:
  8. Don Ryan (donryan) 05-Feb-1995
  9. Environment:
  10. User Mode - Win32
  11. Revision History:
  12. --*/
  13. #ifndef _MAPPSHT_H_
  14. #define _MAPPSHT_H_
  15. #include "mapppgs.h"
  16. class CMappingPropertySheet : public CPropertySheet
  17. {
  18. DECLARE_DYNAMIC(CMappingPropertySheet)
  19. private:
  20. CMappingPropertyPageSettings m_settingsPage;
  21. public:
  22. DWORD m_fUpdateHint;
  23. public:
  24. CMappingPropertySheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  25. CMappingPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  26. virtual ~CMappingPropertySheet();
  27. void InitPages(CMapping* pMapping);
  28. //{{AFX_VIRTUAL(CMappingPropertySheet)
  29. //}}AFX_VIRTUAL
  30. protected:
  31. //{{AFX_MSG(CMappingPropertySheet)
  32. afx_msg void OnHelp();
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. };
  36. #endif // _MAPPSHT_H_