• 大小: 4.52MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-30
  • 语言: C/C++
  • 标签: MFC  MCI  播放器  

资源简介

MFC写的多媒体播放器(包括录音,播放,音频参数解析等功能)

资源截图

代码片段和文件信息

// myplayer.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “myplayer.h“
#include “myplayerDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CMyplayerApp

BEGIN_MESSAGE_MAP(CMyplayerApp CWinApp)
//{{AFX_MSG_MAP(CMyplayerApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMyplayerApp construction

CMyplayerApp::CMyplayerApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CMyplayerApp object

CMyplayerApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CMyplayerApp initialization

BOOL CMyplayerApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

CMyplayerDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       4091  2012-05-08 20:56  myplayer.dsp

     文件        539  2012-05-08 20:56  myplayer.dsw

     文件       1346  2012-05-08 20:56  myplayer.h

     文件      82944  2013-05-11 16:22  myplayer.ncb

     文件      48640  2013-05-11 16:22  myplayer.opt

     文件        250  2012-05-12 00:12  myplayer.plg

     文件       8892  2012-05-12 00:06  myplayer.rc

     文件    6311936  2012-05-08 21:02  myplayer.sdf

     文件       7746  2012-05-08 21:01  myplayer.vcxproj

     文件       1919  2012-05-08 21:01  myplayer.vcxproj.filters

     文件        143  2012-05-08 21:01  myplayer.vcxproj.user

     文件      12426  2012-05-12 00:06  myplayerDlg.cpp

     文件       1946  2012-05-11 23:53  myplayerDlg.h

     文件      16398  2013-05-11 16:21  RCa05332

     文件       3615  2012-05-08 20:56  ReadMe.txt

     文件       2250  2012-05-12 00:06  resource.h

     文件        210  2012-05-08 20:56  StdAfx.cpp

     文件       1054  2012-05-08 20:56  StdAfx.h

     文件    2125871  2012-05-12 00:06  Debug\myplayer.exe

     文件    2514440  2012-05-12 00:06  Debug\myplayer.ilk

     文件      17738  2012-05-11 23:55  Debug\myplayer.obj

     文件    5458532  2012-05-11 22:08  Debug\myplayer.pch

     文件    4056064  2012-05-12 00:06  Debug\myplayer.pdb

     文件      10564  2012-05-12 00:06  Debug\myplayer.res

     文件      48241  2012-05-12 00:06  Debug\myplayerDlg.obj

     文件     105164  2012-05-11 22:08  Debug\StdAfx.obj

     文件     214016  2012-05-12 00:12  Debug\vc60.idb

     文件     380928  2012-05-12 00:06  Debug\vc60.pdb

     文件       1078  2012-05-08 09:38  res\myplayer.ico

     文件        400  2012-05-08 09:38  res\myplayer.rc2

............此处省略7个文件信息

评论

共有 条评论