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

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1999 - 1999
  6. //
  7. // File: MDIClint.cpp
  8. //
  9. //--------------------------------------------------------------------------
  10. // MDIClint.cpp : implementation file
  11. //
  12. #include "stdafx.h"
  13. #include "amc.h"
  14. #include "MDIClint.h"
  15. #include "amcview.h"
  16. #ifdef _DEBUG
  17. #define new DEBUG_NEW
  18. #endif
  19. //############################################################################
  20. //############################################################################
  21. //
  22. // Implementation of CMDIClientWnd
  23. //
  24. //############################################################################
  25. //############################################################################
  26. CMDIClientWnd::CMDIClientWnd()
  27. {
  28. }
  29. CMDIClientWnd::~CMDIClientWnd()
  30. {
  31. }
  32. BEGIN_MESSAGE_MAP(CMDIClientWnd, CWnd)
  33. //{{AFX_MSG_MAP(CMDIClientWnd)
  34. ON_WM_CREATE()
  35. // NOTE - the ClassWizard will add and remove mapping macros here.
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. int CMDIClientWnd::OnCreate(LPCREATESTRUCT lpCreateStruct)
  39. {
  40. return BC::OnCreate(lpCreateStruct);
  41. // Do not add anything here because this function will never be called.
  42. // The CMDIClientWnd window is subclassed after it is created.
  43. }