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.

63 lines
1.5 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 2000.
  5. //
  6. // File: prec.h
  7. //
  8. // Contents: precedence property pane (RSOP mode only)
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History: 02-16-2000 stevebl Created
  15. //
  16. //---------------------------------------------------------------------------
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CPrecedence dialog
  19. class CPrecedence : public CPropertyPage
  20. {
  21. DECLARE_DYNCREATE(CPrecedence)
  22. // Construction
  23. public:
  24. CPrecedence();
  25. ~CPrecedence();
  26. CPrecedence ** m_ppThis;
  27. // Dialog Data
  28. //{{AFX_DATA(CPrecedence)
  29. enum { IDD = IDD_PRECEDENCE };
  30. CListCtrl m_list;
  31. CString m_szTitle;
  32. //}}AFX_DATA
  33. // Overrides
  34. // ClassWizard generate virtual function overrides
  35. //{{AFX_VIRTUAL(CPrecedence)
  36. protected:
  37. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  38. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. protected:
  42. // Generated message map functions
  43. //{{AFX_MSG(CPrecedence)
  44. virtual BOOL OnInitDialog();
  45. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. public:
  49. LONG_PTR m_hConsoleHandle; // Handle given to the snap-in by the console
  50. CAppData * m_pData;
  51. int m_iViewState;
  52. CString m_szRSOPNamespace;
  53. };