ClibimgplayerApp.cpp 578 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #include "stdafx.h"
  2. #include "ClibimgplayerApp.h"
  3. #ifdef _DEBUG
  4. #define new DEBUG_NEW
  5. #endif
  6. // ClibimgplayerApp
  7. BEGIN_MESSAGE_MAP(ClibimgplayerApp, CWinApp)
  8. ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
  9. END_MESSAGE_MAP()
  10. // ClibimgplayerApp 构造
  11. ClibimgplayerApp::ClibimgplayerApp()
  12. {
  13. // TODO: 在此处添加构造代码,
  14. // 将所有重要的初始化放置在 InitInstance 中
  15. }
  16. // 唯一的一个 ClibimgplayerApp 对象
  17. ClibimgplayerApp theApp;
  18. // ClibimgplayerApp 初始化
  19. BOOL ClibimgplayerApp::InitInstance()
  20. {
  21. CWinApp::InitInstance();
  22. return TRUE;
  23. }