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.

46 lines
1.0 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1999
  6. //
  7. // File: domobjui.h
  8. //
  9. //--------------------------------------------------------------------------
  10. #ifndef _DOMOBJUI_H
  11. #define _DOMOBJUI_H
  12. ///////////////////////////////////////////////////////////////////////
  13. // fwd declarations
  14. class CDSBasePathsInfo;
  15. ///////////////////////////////////////////////////////////////////////
  16. // CEditFsmoDialog
  17. class CEditFsmoDialog : public CDialog
  18. {
  19. public:
  20. CEditFsmoDialog(MyBasePathsInfo* pInfo, HWND hWndParent, IDisplayHelp* pIDisplayHelp);
  21. private:
  22. virtual BOOL OnInitDialog();
  23. afx_msg void OnChange();
  24. afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
  25. void _SetFsmoServerStatus(BOOL bOnLine);
  26. MyBasePathsInfo* m_pInfo; // info about the current focus
  27. CComPtr<IDisplayHelp> m_spIDisplayHelp;
  28. CString m_szFsmoOwnerServerName;
  29. CToggleTextControlHelper m_fsmoServerState;
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. #endif // _DOMOBJUI_H