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.

75 lines
1.9 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1999.
  5. //
  6. // File: AdvDep.h
  7. //
  8. // Contents: advanced deployment settings dialog
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History: 01-28-1999 stevebl Created
  15. //
  16. //---------------------------------------------------------------------------
  17. #if !defined(AFX_ADVDEP_H__5F6E7E00_B6D2_11D2_B91F_0080C7971BE1__INCLUDED_)
  18. #define AFX_ADVDEP_H__5F6E7E00_B6D2_11D2_B91F_0080C7971BE1__INCLUDED_
  19. #if _MSC_VER >= 1000
  20. #pragma once
  21. #endif // _MSC_VER >= 1000
  22. // AdvDep.h : header file
  23. //
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CAdvDep dialog
  26. class CDeploy;
  27. class CAdvDep : public CDialog
  28. {
  29. // Construction
  30. public:
  31. CAdvDep(CWnd* pParent = NULL); // standard constructor
  32. // Dialog Data
  33. //{{AFX_DATA(CAdvDep)
  34. enum { IDD = IDD_ADVDEP };
  35. BOOL m_fIgnoreLCID;
  36. BOOL m_fInstallOnAlpha;
  37. BOOL m_fUninstallUnmanaged;
  38. BOOL m_f32On64;
  39. BOOL m_fIncludeOLEInfo;
  40. CString m_szProductCode;
  41. CString m_szDeploymentCount;
  42. CString m_szScriptName;
  43. //}}AFX_DATA
  44. CDeploy * m_pDeploy;
  45. // Overrides
  46. // ClassWizard generated virtual function overrides
  47. //{{AFX_VIRTUAL(CAdvDep)
  48. protected:
  49. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  50. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  51. //}}AFX_VIRTUAL
  52. // Implementation
  53. protected:
  54. // Generated message map functions
  55. //{{AFX_MSG(CAdvDep)
  56. virtual BOOL OnInitDialog();
  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_ADVDEP_H__5F6E7E00_B6D2_11D2_B91F_0080C7971BE1__INCLUDED_)