MAINFRM.CPP
上传用户:abcdshs
上传日期:2007-01-07
资源大小:1858k
文件大小:1k
源码类别:

游戏

开发平台:

Visual C++

  1. // MainFrm.cpp : implementation of the MainFrm class
  2. //
  3. #include "stdafx.h"
  4. #include "dudes.h"
  5. #include "MainFrm.h"
  6. /////////////////////////////////////////////////////////////////////////////
  7. // MainFrm
  8. IMPLEMENT_DYNCREATE(MainFrm, CFrameWnd)
  9. BEGIN_MESSAGE_MAP(MainFrm, CFrameWnd)
  10. //{{AFX_MSG_MAP(MainFrm)
  11. // NOTE - the ClassWizard will add and remove mapping macros here.
  12. //    DO NOT EDIT what you see in these blocks of generated code !
  13. //}}AFX_MSG_MAP
  14. END_MESSAGE_MAP()
  15. /////////////////////////////////////////////////////////////////////////////
  16. // MainFrm construction/destruction
  17. MainFrm::MainFrm() : CFrameWnd()
  18. {
  19. // TODO: add member initialization code here
  20. }
  21. MainFrm::~MainFrm()
  22. {
  23. }
  24. BOOL MainFrm::PreCreateWindow(CREATESTRUCT& cs)
  25. {
  26. // TODO: Modify the Window class or styles here by modifying
  27. //  the CREATESTRUCT cs
  28.     cs.cx = 264;
  29.     cs.cy = 280;
  30. return CFrameWnd::PreCreateWindow(cs);
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // MainFrm diagnostics
  34. #ifdef _DEBUG
  35. void MainFrm::AssertValid() const
  36. {
  37. CFrameWnd::AssertValid();
  38. }
  39. void MainFrm::Dump(CDumpContext& dc) const
  40. {
  41. CFrameWnd::Dump(dc);
  42. }
  43. #endif //_DEBUG
  44. /////////////////////////////////////////////////////////////////////////////
  45. // MainFrm message handlers