Source code of Windows XP (NT5)
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.

91 lines
2.6 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1998.
  5. //
  6. // File: Deploy.h
  7. //
  8. // Contents: deployment property page
  9. //
  10. // Classes: CDeploy
  11. //
  12. // History: 03-14-1998 stevebl Commented
  13. //
  14. //---------------------------------------------------------------------------
  15. #if !defined(AFX_DEPLOY_H__745C0AF0_8C70_11D1_984D_00C04FB9603F__INCLUDED_)
  16. #define AFX_DEPLOY_H__745C0AF0_8C70_11D1_984D_00C04FB9603F__INCLUDED_
  17. #if _MSC_VER >= 1000
  18. #pragma once
  19. #endif // _MSC_VER >= 1000
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CDeploy dialog
  22. class CDeploy : public CPropertyPage
  23. {
  24. DECLARE_DYNCREATE(CDeploy)
  25. // Construction
  26. public:
  27. CDeploy();
  28. ~CDeploy();
  29. CDeploy ** m_ppThis;
  30. // Dialog Data
  31. //{{AFX_DATA(CDeploy)
  32. enum { IDD = IDD_DEPLOYMENT };
  33. BOOL m_fAutoInst;
  34. BOOL m_fFullInst;
  35. int m_iUI;
  36. int m_iDeployment;
  37. BOOL m_fUninstallOnPolicyRemoval;
  38. BOOL m_fNotUserInstall;
  39. CString m_szInitialPackageName;
  40. //}}AFX_DATA
  41. CAppData * m_pData;
  42. CScopePane * m_pScopePane;
  43. IClassAdmin * m_pIClassAdmin;
  44. #if 0
  45. LPGPEINFORMATION m_pIGPEInformation;
  46. #endif
  47. LONG_PTR m_hConsoleHandle;
  48. MMC_COOKIE m_cookie;
  49. BOOL m_fPreDeploy;
  50. BOOL m_fMachine;
  51. BOOL m_fRSOP;
  52. CAdvDep m_dlgAdvDep;
  53. // Overrides
  54. // ClassWizard generate virtual function overrides
  55. //{{AFX_VIRTUAL(CDeploy)
  56. public:
  57. virtual BOOL OnApply();
  58. protected:
  59. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  60. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  61. //}}AFX_VIRTUAL
  62. // Implementation
  63. protected:
  64. // Generated message map functions
  65. //{{AFX_MSG(CDeploy)
  66. virtual BOOL OnInitDialog();
  67. afx_msg void OnDisable();
  68. afx_msg void OnAdvanced();
  69. afx_msg void OnPublished();
  70. afx_msg void OnAssigned();
  71. afx_msg void OnChanged();
  72. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  73. //}}AFX_MSG
  74. DECLARE_MESSAGE_MAP()
  75. void RefreshData(void);
  76. };
  77. //{{AFX_INSERT_LOCATION}}
  78. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  79. #endif // !defined(AFX_DEPLOY_H__745C0AF0_8C70_11D1_984D_00C04FB9603F__INCLUDED_)