12345678910111213141516171819202122232425262728293031323334353637 |
- #include "stdafx.h"
- #include "ClibimgplayerApp.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #endif
- // ClibimgplayerApp
- BEGIN_MESSAGE_MAP(ClibimgplayerApp, CWinApp)
- ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
- END_MESSAGE_MAP()
- // ClibimgplayerApp 构造
- ClibimgplayerApp::ClibimgplayerApp()
- {
- // TODO: 在此处添加构造代码,
- // 将所有重要的初始化放置在 InitInstance 中
- }
- // 唯一的一个 ClibimgplayerApp 对象
- ClibimgplayerApp theApp;
- // ClibimgplayerApp 初始化
- BOOL ClibimgplayerApp::InitInstance()
- {
- CWinApp::InitInstance();
- return TRUE;
- }
|