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

  1. /*******************************************************************************
  2. *
  3. * badsrvvw.h
  4. *
  5. * declarations for the CBadServerView class
  6. *
  7. * copyright notice: Copyright 1997, Citrix Systems Inc.
  8. * Copyright (c) 1998 - 1999 Microsoft Corporation
  9. *
  10. * $Author: butchd $ Don Messerli
  11. *
  12. * $Log: M:\NT\PRIVATE\UTILS\CITRIX\WINUTILS\WINADMIN\VCS\BADSRVVW.H $
  13. *
  14. * Rev 1.0 30 Jul 1997 17:11:00 butchd
  15. * Initial revision.
  16. *
  17. *******************************************************************************/
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CBadServerView form view
  20. #ifndef __AFXEXT_H__
  21. #include <afxext.h>
  22. #endif
  23. class CBadServerView : public CFormView
  24. {
  25. friend class CRightPane;
  26. protected:
  27. CBadServerView(); // protected constructor used by dynamic creation
  28. DECLARE_DYNCREATE(CBadServerView)
  29. // Form Data
  30. public:
  31. //{{AFX_DATA(CBadServerView)
  32. enum { IDD = IDD_BAD_SERVER };
  33. // NOTE: the ClassWizard will add data members here
  34. //}}AFX_DATA
  35. // Attributes
  36. public:
  37. // Operations
  38. public:
  39. // Overrides
  40. // ClassWizard generated virtual function overrides
  41. //{{AFX_VIRTUAL(CBadServerView)
  42. protected:
  43. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  44. //}}AFX_VIRTUAL
  45. // Implementation
  46. protected:
  47. virtual ~CBadServerView();
  48. #ifdef _DEBUG
  49. virtual void AssertValid() const;
  50. virtual void Dump(CDumpContext& dc) const;
  51. #endif
  52. // Generated message map functions
  53. //{{AFX_MSG(CBadServerView)
  54. // NOTE - the ClassWizard will add and remove member functions here.
  55. //}}AFX_MSG
  56. DECLARE_MESSAGE_MAP()
  57. };
  58. /////////////////////////////////////////////////////////////////////////////