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.

69 lines
1.5 KiB

  1. /*++
  2. Copyright (c) 1997-1999 Microsoft Corporation
  3. Module Name:
  4. Abstract:
  5. Author:
  6. 16-Jan-1997 AlanWar
  7. Revision History:
  8. --*/
  9. #if !defined(AFX_DisplayDataDlg_H__CB4E370B_8DD5_11D1_9905_006008C3A19A__INCLUDED_)
  10. #define AFX_DisplayDataDlg_H__CB4E370B_8DD5_11D1_9905_006008C3A19A__INCLUDED_
  11. #if _MSC_VER >= 1000
  12. #pragma once
  13. #endif // _MSC_VER >= 1000
  14. // DisplayDataDlg.h : header file
  15. //
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CDisplayDataDlg dialog
  18. #pragma warning (once : 4200)
  19. #include <wmistr.h>
  20. class CDisplayDataDlg : public CDialog
  21. {
  22. // Construction
  23. public:
  24. CDisplayDataDlg(PWNODE_ALL_DATA pwNode, CWnd* pParent = NULL); // standard constructor
  25. CDisplayDataDlg(PWNODE_SINGLE_INSTANCE pwNode, CWnd* pParent = NULL); // standard constructor
  26. // Dialog Data
  27. //{{AFX_DATA(CDisplayDataDlg)
  28. enum { IDD = IDD_ALL_DATA };
  29. CEdit txtData;
  30. //}}AFX_DATA
  31. // Overrides
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CDisplayDataDlg)
  34. protected:
  35. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. protected:
  39. void DisplayAllData(PWNODE_ALL_DATA Wnode);
  40. void DisplaySingleInstance(PWNODE_SINGLE_INSTANCE Wnode);
  41. PWNODE_ALL_DATA pwNode;
  42. PWNODE_SINGLE_INSTANCE pwSingleNode;
  43. // Generated message map functions
  44. //{{AFX_MSG(CDisplayDataDlg)
  45. virtual BOOL OnInitDialog();
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. };
  49. #endif // !defined(AFX_DisplayDataDlg_H__CB4E370B_8DD5_11D1_9905_006008C3A19A__INCLUDED_)