ShowInt.cpp 583 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // ShowInt.cpp : 定义应用程序的类行为。
  2. //
  3. #include "stdafx.h"
  4. #include "ShowInt.h"
  5. #include "ToolDialog.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #endif
  9. // CShowIntApp
  10. BEGIN_MESSAGE_MAP(CShowIntApp, CWinApp)
  11. ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
  12. END_MESSAGE_MAP()
  13. // CShowIntApp 构造
  14. CShowIntApp::CShowIntApp()
  15. {
  16. // 支持重新启动管理器
  17. // TODO: 在此处添加构造代码,
  18. // 将所有重要的初始化放置在 InitInstance 中
  19. }
  20. // 唯一的一个 CShowIntApp 对象
  21. CShowIntApp theApp;
  22. // CShowIntApp 初始化
  23. BOOL CShowIntApp::InitInstance()
  24. {
  25. CWinApp::InitInstance();
  26. return TRUE;
  27. }