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.

56 lines
1.0 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. Where.h : header file
  5. File History:
  6. JonY Apr-96 created
  7. --*/
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CWhere dialog
  10. class CWhere : public CPropertyPage
  11. {
  12. DECLARE_DYNCREATE(CWhere)
  13. // Construction
  14. public:
  15. CWhere();
  16. ~CWhere();
  17. // Dialog Data
  18. //{{AFX_DATA(CWhere)
  19. enum { IDD = IDD_MACHINE_DLG };
  20. CNetTreeCtrl m_ctServerTree;
  21. CString m_csMachineName;
  22. //}}AFX_DATA
  23. // Overrides
  24. // ClassWizard generate virtual function overrides
  25. //{{AFX_VIRTUAL(CWhere)
  26. public:
  27. virtual LRESULT OnWizardNext();
  28. virtual LRESULT OnWizardBack();
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. private:
  33. BOOL m_bExpandedOnce;
  34. // Implementation
  35. protected:
  36. // Generated message map functions
  37. //{{AFX_MSG(CWhere)
  38. afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
  39. afx_msg void OnSelchangedServerTree(NMHDR* pNMHDR, LRESULT* pResult);
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };