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.2 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1998.
  5. //
  6. // File: pkgdtl.h
  7. //
  8. // Contents: package details property page (not normally visible)
  9. //
  10. // Classes: CPackageDetails
  11. //
  12. // History: 03-14-1998 stevebl Commented
  13. //
  14. //---------------------------------------------------------------------------
  15. #if !defined(AFX_PKGDTL_H__BB970E11_9CA4_11D0_8D3F_00A0C90DCAE7__INCLUDED_)
  16. #define AFX_PKGDTL_H__BB970E11_9CA4_11D0_8D3F_00A0C90DCAE7__INCLUDED_
  17. #if _MSC_VER >= 1000
  18. #pragma once
  19. #endif // _MSC_VER >= 1000
  20. // pkgdtl.h : header file
  21. //
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CPackageDetails dialog
  24. class CPackageDetails : public CPropertyPage
  25. {
  26. DECLARE_DYNCREATE(CPackageDetails)
  27. // Construction
  28. public:
  29. CPackageDetails();
  30. ~CPackageDetails();
  31. CPackageDetails ** m_ppThis;
  32. // Dialog Data
  33. //{{AFX_DATA(CPackageDetails)
  34. enum { IDD = IDD_PACKAGE_DETAILS };
  35. CListBox m_cList;
  36. //}}AFX_DATA
  37. // Overrides
  38. // ClassWizard generate virtual function overrides
  39. //{{AFX_VIRTUAL(CPackageDetails)
  40. protected:
  41. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  42. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  43. //}}AFX_VIRTUAL
  44. void RefreshData(void);
  45. // Implementation
  46. protected:
  47. // Generated message map functions
  48. //{{AFX_MSG(CPackageDetails)
  49. virtual BOOL OnInitDialog();
  50. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. void DumpDetails(FILE *);
  54. void DumpClassDetail(FILE *, CLASSDETAIL *);
  55. public:
  56. LONG_PTR m_hConsoleHandle; // Handle given to the snap-in by the console
  57. CAppData * m_pData;
  58. };
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  61. #endif // !defined(AFX_PKGDTL_H__BB970E11_9CA4_11D0_8D3F_00A0C90DCAE7__INCLUDED_)