1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // ShowInt.cpp : 定义应用程序的类行为。
- //
- #include "stdafx.h"
- #include "ShowInt.h"
- #include "ToolDialog.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #endif
- // CShowIntApp
- BEGIN_MESSAGE_MAP(CShowIntApp, CWinApp)
- ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
- END_MESSAGE_MAP()
- // CShowIntApp 构造
- CShowIntApp::CShowIntApp()
- {
- // 支持重新启动管理器
-
- // TODO: 在此处添加构造代码,
- // 将所有重要的初始化放置在 InitInstance 中
- }
- // 唯一的一个 CShowIntApp 对象
- CShowIntApp theApp;
- // CShowIntApp 初始化
- BOOL CShowIntApp::InitInstance()
- {
- CWinApp::InitInstance();
- return TRUE;
- }
|