asf2mkv.cpp
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:3k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2005 Gabest
  3.  * http://www.gabest.org
  4.  *
  5.  *  This Program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2, or (at your option)
  8.  *  any later version.
  9.  *   
  10.  *  This Program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13.  *  GNU General Public License for more details.
  14.  *   
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with GNU Make; see the file COPYING.  If not, write to
  17.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  18.  *  http://www.gnu.org/copyleft/gpl.html
  19.  *
  20.  */
  21. // asf2mkv.cpp : Defines the class behaviors for the application.
  22. //
  23. #include "stdafx.h"
  24. #include "asf2mkv.h"
  25. #include "asf2mkvDlg.h"
  26. #include ".asf2mkv.h"
  27. #ifdef _DEBUG
  28. #define new DEBUG_NEW
  29. #endif
  30. // Casf2mkvApp
  31. BEGIN_MESSAGE_MAP(Casf2mkvApp, CWinApp)
  32. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  33. END_MESSAGE_MAP()
  34. // Casf2mkvApp construction
  35. Casf2mkvApp::Casf2mkvApp()
  36. {
  37. // TODO: add construction code here,
  38. // Place all significant initialization in InitInstance
  39. }
  40. // The one and only Casf2mkvApp object
  41. Casf2mkvApp theApp;
  42. // Casf2mkvApp initialization
  43. BOOL Casf2mkvApp::InitInstance()
  44. {
  45. // InitCommonControls() is required on Windows XP if an application
  46. // manifest specifies use of ComCtl32.dll version 6 or later to enable
  47. // visual styles.  Otherwise, any window creation will fail.
  48. InitCommonControls();
  49. CWinApp::InitInstance();
  50. // Standard initialization
  51. // If you are not using these features and wish to reduce the size
  52. // of your final executable, you should remove from the following
  53. // the specific initialization routines you do not need
  54. // Change the registry key under which our settings are stored
  55. // TODO: You should modify this string to be something appropriate
  56. // such as the name of your company or organization
  57. SetRegistryKey(_T("Gabest"));
  58. HRESULT hr;
  59.     if(FAILED(hr = OleInitialize(0)))
  60. {
  61.         AfxMessageBox(_T("OleInitialize failed!"));
  62. return FALSE;
  63. }
  64. Casf2mkvDlg dlg;
  65. m_pMainWnd = &dlg;
  66. INT_PTR nResponse = dlg.DoModal();
  67. if (nResponse == IDOK)
  68. {
  69. // TODO: Place code here to handle when the dialog is
  70. //  dismissed with OK
  71. }
  72. else if (nResponse == IDCANCEL)
  73. {
  74. // TODO: Place code here to handle when the dialog is
  75. //  dismissed with Cancel
  76. }
  77. // Since the dialog has been closed, return FALSE so that we exit the
  78. //  application, rather than start the application's message pump.
  79. return FALSE;
  80. }
  81. int Casf2mkvApp::ExitInstance()
  82. {
  83.     OleUninitialize();
  84. return CWinApp::ExitInstance();
  85. }