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.

77 lines
1.8 KiB

  1. /*******************************************************************************
  2. *
  3. * badsrvvw.cpp
  4. *
  5. * implementation of 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.CPP $
  13. *
  14. * Rev 1.0 30 Jul 1997 17:10:58 butchd
  15. * Initial revision.
  16. *
  17. *******************************************************************************/
  18. #include "stdafx.h"
  19. #include "winadmin.h"
  20. #include "badsrvvw.h"
  21. #ifdef _DEBUG
  22. #define new DEBUG_NEW
  23. #undef THIS_FILE
  24. static char THIS_FILE[] = __FILE__;
  25. #endif
  26. /////////////////////////////////////////////////////////////////////////////
  27. // badboy
  28. IMPLEMENT_DYNCREATE(CBadServerView, CFormView)
  29. CBadServerView::CBadServerView()
  30. : CFormView(CBadServerView::IDD)
  31. {
  32. //{{AFX_DATA_INIT(CBadServerView)
  33. // NOTE: the ClassWizard will add member initialization here
  34. //}}AFX_DATA_INIT
  35. }
  36. CBadServerView::~CBadServerView()
  37. {
  38. }
  39. void CBadServerView::DoDataExchange(CDataExchange* pDX)
  40. {
  41. CFormView::DoDataExchange(pDX);
  42. //{{AFX_DATA_MAP(CBadServerView)
  43. // NOTE: the ClassWizard will add DDX and DDV calls here
  44. //}}AFX_DATA_MAP
  45. }
  46. BEGIN_MESSAGE_MAP(CBadServerView, CFormView)
  47. //{{AFX_MSG_MAP(CBadServerView)
  48. // NOTE - the ClassWizard will add and remove mapping macros here.
  49. //}}AFX_MSG_MAP
  50. END_MESSAGE_MAP()
  51. /////////////////////////////////////////////////////////////////////////////
  52. // CBadServerView diagnostics
  53. #ifdef _DEBUG
  54. void CBadServerView::AssertValid() const
  55. {
  56. CFormView::AssertValid();
  57. }
  58. void CBadServerView::Dump(CDumpContext& dc) const
  59. {
  60. CFormView::Dump(dc);
  61. }
  62. #endif //_DEBUG
  63. /////////////////////////////////////////////////////////////////////////////
  64. // CBadServerView message handlers