FIRE.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // fire.cpp : Defines the class behaviors for the application.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "fire.h"
  14. #include "firedlg.h"
  15. #ifdef _DEBUG
  16. #undef THIS_FILE
  17. static char BASED_CODE THIS_FILE[] = __FILE__;
  18. #endif
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CFireApp
  21. BEGIN_MESSAGE_MAP(CFireApp, CWinApp)
  22. //{{AFX_MSG_MAP(CFireApp)
  23. // NOTE - the ClassWizard will add and remove mapping macros here.
  24. //    DO NOT EDIT what you see in these blocks of generated code!
  25. //}}AFX_MSG
  26. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  27. END_MESSAGE_MAP()
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CFireApp construction
  30. CFireApp::CFireApp()
  31. {
  32. // TODO: add construction code here,
  33. // Place all significant initialization in InitInstance
  34. }
  35. /////////////////////////////////////////////////////////////////////////////
  36. // The one and only CFireApp object
  37. CFireApp theApp;
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CFireApp initialization
  40. BOOL CFireApp::InitInstance()
  41. {
  42. DWORD dwVersion = ::GetVersion();
  43. BOOL bWin31 = (dwVersion > 0x80000000 && (BYTE)dwVersion < 4);
  44. if (bWin31)
  45. {
  46. AfxMessageBox(IDP_WIN32S);
  47. return FALSE;
  48. }
  49. // Standard initialization
  50. // If you are not using these features and wish to reduce the size
  51. //  of your final executable, you should remove from the following
  52. //  the specific initialization routines you do not need.
  53. Enable3dControls();
  54. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  55. CFireDlg dlg;
  56. m_pMainWnd = &dlg;
  57. int nResponse = dlg.DoModal();
  58. if (nResponse == IDOK)
  59. {
  60. // TODO: Place code here to handle when the dialog is
  61. //  dismissed with OK
  62. }
  63. else if (nResponse == IDCANCEL)
  64. {
  65. // TODO: Place code here to handle when the dialog is
  66. //  dismissed with Cancel
  67. }
  68. // Since the dialog has been closed, return FALSE so that we exit the
  69. //  application, rather than start the application's message pump.
  70. return FALSE;
  71. }