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.

63 lines
1.9 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation 1996-2001.
  5. //
  6. // File: profdesc.h
  7. //
  8. // Contents: definition of CSetProfileDescription
  9. //
  10. //----------------------------------------------------------------------------
  11. #if !defined(AFX_SETProfileDESCRIPTION_H__2AD86C99_F660_11D1_AB9A_00C04FB6C6FA__INCLUDED_)
  12. #define AFX_SETProfileDESCRIPTION_H__2AD86C99_F660_11D1_AB9A_00C04FB6C6FA__INCLUDED_
  13. #if _MSC_VER >= 1000
  14. #pragma once
  15. #endif // _MSC_VER >= 1000
  16. #include "HelpDlg.h"
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CSetProfileDescription dialog
  19. class CSetProfileDescription : public CHelpDialog
  20. {
  21. // Construction
  22. public:
  23. CSetProfileDescription(); // standard constructor
  24. // Dialog Data
  25. //{{AFX_DATA(CSetProfileDescription)
  26. enum { IDD = IDD_SET_DESCRIPTION };
  27. CString m_strDesc;
  28. //}}AFX_DATA
  29. void Initialize(CFolder *pFolder,CComponentDataImpl *pCDI) {
  30. m_pFolder = pFolder; m_pCDI = pCDI;
  31. }
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CSetProfileDescription)
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. protected:
  40. // Generated message map functions
  41. //{{AFX_MSG(CSetProfileDescription)
  42. virtual void OnOK();
  43. virtual void OnCancel();
  44. virtual BOOL OnInitDialog();
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. CFolder *m_pFolder;
  48. CComponentDataImpl *m_pCDI;
  49. };
  50. //{{AFX_INSERT_Profile}}
  51. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  52. #endif // !defined(AFX_SETProfileDESCRIPTION_H__2AD86C99_F660_11D1_AB9A_00C04FB6C6FA__INCLUDED_)