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

多媒体编程

开发平台:

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. // VSRip.cpp : Defines the class behaviors for the application.
  22. //
  23. #include "stdafx.h"
  24. #include "VSRip.h"
  25. #include "VSRipDlg.h"
  26. #ifdef _DEBUG
  27. #define new DEBUG_NEW
  28. #endif
  29. // CVSRipApp
  30. BEGIN_MESSAGE_MAP(CVSRipApp, CWinApp)
  31. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  32. END_MESSAGE_MAP()
  33. // CVSRipApp construction
  34. CVSRipApp::CVSRipApp()
  35. {
  36. // TODO: add construction code here,
  37. // Place all significant initialization in InitInstance
  38. }
  39. // The one and only CVSRipApp object
  40. CVSRipApp theApp;
  41. // CVSRipApp initialization
  42. BOOL CVSRipApp::InitInstance()
  43. {
  44. // InitCommonControls() is required on Windows XP if an application
  45. // manifest specifies use of ComCtl32.dll version 6 or later to enable
  46. // visual styles.  Otherwise, any window creation will fail.
  47. InitCommonControls();
  48. CWinApp::InitInstance();
  49. CVSRipDlg dlg;
  50. m_pMainWnd = &dlg;
  51. INT_PTR nResponse = dlg.DoModal();
  52. if (nResponse == IDOK)
  53. {
  54. // TODO: Place code here to handle when the dialog is
  55. //  dismissed with OK
  56. }
  57. else if (nResponse == IDCANCEL)
  58. {
  59. // TODO: Place code here to handle when the dialog is
  60. //  dismissed with Cancel
  61. }
  62. // Since the dialog has been closed, return FALSE so that we exit the
  63. //  application, rather than start the application's message pump.
  64. return FALSE;
  65. }