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.

83 lines
1.4 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. childfrm.cpp
  5. Abstract:
  6. Author:
  7. Sivaprasad Padisetty (sivapad) 6/25/97
  8. Revision History:
  9. --*/
  10. #include "stdafx.h"
  11. #include "evtview.h"
  12. #include "ChildFrm.h"
  13. #ifdef _DEBUG
  14. #define new DEBUG_NEW
  15. #undef THIS_FILE
  16. static char THIS_FILE[] = __FILE__;
  17. #endif
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CChildFrame
  20. IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd)
  21. BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWnd)
  22. //{{AFX_MSG_MAP(CChildFrame)
  23. //}}AFX_MSG_MAP
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CChildFrame construction/destruction
  27. CChildFrame::CChildFrame()
  28. {
  29. // TODO: add member initialization code here
  30. }
  31. CChildFrame::~CChildFrame()
  32. {
  33. }
  34. BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
  35. {
  36. // TODO: Modify the Window class or styles here by modifying
  37. // the CREATESTRUCT cs
  38. return CMDIChildWnd::PreCreateWindow(cs);
  39. }
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CChildFrame diagnostics
  42. #ifdef _DEBUG
  43. void CChildFrame::AssertValid() const
  44. {
  45. CMDIChildWnd::AssertValid();
  46. }
  47. void CChildFrame::Dump(CDumpContext& dc) const
  48. {
  49. CMDIChildWnd::Dump(dc);
  50. }
  51. #endif //_DEBUG
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CChildFrame message handlers