S3Robot.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. // S3Robot.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "S3Robot.h"
  5. #include "S3RobotDlg.h"
  6. #include "KEngine.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CS3RobotApp
  14. BEGIN_MESSAGE_MAP(CS3RobotApp, CWinApp)
  15. //{{AFX_MSG_MAP(CS3RobotApp)
  16. //}}AFX_MSG
  17. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  18. END_MESSAGE_MAP()
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CS3RobotApp construction
  21. CS3RobotApp::CS3RobotApp()
  22. {
  23. }
  24. /////////////////////////////////////////////////////////////////////////////
  25. // The one and only CS3RobotApp object
  26. CS3RobotApp theApp;
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CS3RobotApp initialization
  29. BOOL CS3RobotApp::InitInstance()
  30. {
  31. AfxEnableControlContainer();
  32. g_SetRootPath( NULL );
  33. #ifdef _AFXDLL
  34. Enable3dControls(); // Call this when using MFC in a shared DLL
  35. #else
  36. Enable3dControlsStatic(); // Call this when linking to MFC statically
  37. #endif
  38. CS3RobotDlg dlg;
  39. m_pMainWnd = &dlg;
  40. int nResponse = dlg.DoModal();
  41. if (nResponse == IDOK)
  42. {
  43. }
  44. else if (nResponse == IDCANCEL)
  45. {
  46. }
  47. // Since the dialog has been closed, return FALSE so that we exit the
  48. //  application, rather than start the application's message pump.
  49. return FALSE;
  50. }