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.

75 lines
2.3 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1998.
  5. //
  6. // File: ToolAdv.h
  7. //
  8. // Contents: tool-wide default settings property page
  9. //
  10. // Classes: CToolAdvDefs
  11. //
  12. // History: 09-12-2000 stevebl Split from the General property page
  13. //
  14. //---------------------------------------------------------------------------
  15. #if !defined(AFX_TOOLADV_H__B6FBC88D_8B7B_11D1_984D_00C04FB9603F__INCLUDED_)
  16. #define AFX_TOOLADV_H__B6FBC88D_8B7B_11D1_984D_00C04FB9603F__INCLUDED_
  17. #if _MSC_VER >= 1000
  18. #pragma once
  19. #endif // _MSC_VER >= 1000
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CToolAdvDefs dialog
  22. class CToolAdvDefs : public CPropertyPage
  23. {
  24. // Construction
  25. public:
  26. CToolAdvDefs(CWnd* pParent = NULL); // standard constructor
  27. ~CToolAdvDefs();
  28. // Dialog Data
  29. //{{AFX_DATA(CToolAdvDefs)
  30. enum { IDD = IDD_TOOL_ADVANCEDDEFAULTS };
  31. BOOL m_fUninstallOnPolicyRemoval;
  32. BOOL m_fShowPackageDetails;
  33. BOOL m_fZapOn64;
  34. BOOL m_f32On64;
  35. BOOL m_fIncludeOLEInfo;
  36. //}}AFX_DATA
  37. TOOL_DEFAULTS * m_pToolDefaults;
  38. LONG_PTR m_hConsoleHandle;
  39. MMC_COOKIE m_cookie;
  40. BOOL m_fMachine;
  41. CToolAdvDefs ** m_ppThis;
  42. // Overrides
  43. // ClassWizard generated virtual function overrides
  44. //{{AFX_VIRTUAL(CToolAdvDefs)
  45. public:
  46. virtual BOOL OnApply();
  47. protected:
  48. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  49. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  50. //}}AFX_VIRTUAL
  51. // Implementation
  52. protected:
  53. // Generated message map functions
  54. //{{AFX_MSG(CToolAdvDefs)
  55. virtual BOOL OnInitDialog();
  56. afx_msg void OnChanged();
  57. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  58. //}}AFX_MSG
  59. DECLARE_MESSAGE_MAP()
  60. };
  61. //{{AFX_INSERT_LOCATION}}
  62. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  63. #endif // !defined(AFX_TOOLADV_H__B6FBC88D_8B7B_11D1_984D_00C04FB9603F__INCLUDED_)