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. usrpsht.h
  5. Abstract:
  6. User property sheet implementation.
  7. Author:
  8. Don Ryan (donryan) 05-Feb-1995
  9. Environment:
  10. User Mode - Win32
  11. Revision History:
  12. --*/
  13. #ifndef _USRPSHT_H_
  14. #define _USRPSHT_H_
  15. #include "usrppgp.h"
  16. class CUserPropertySheet : public CPropertySheet
  17. {
  18. DECLARE_DYNAMIC(CUserPropertySheet)
  19. private:
  20. CUserPropertyPageProducts m_productsPage;
  21. public:
  22. DWORD m_fUpdateHint;
  23. public:
  24. CUserPropertySheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  25. CUserPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  26. virtual ~CUserPropertySheet();
  27. void InitPages(CUser* pUser, BOOL bProperties = TRUE);
  28. //{{AFX_VIRTUAL(CUserPropertySheet)
  29. //}}AFX_VIRTUAL
  30. protected:
  31. //{{AFX_MSG(CUserPropertySheet)
  32. afx_msg void OnHelp();
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. };
  36. #endif // _USRPSHT_H_