資源簡介
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??mypla
?????文件????????539??2012-05-08?20:56??mypla
?????文件???????1346??2012-05-08?20:56??mypla
?????文件??????82944??2013-05-11?16:22??mypla
?????文件??????48640??2013-05-11?16:22??mypla
?????文件????????250??2012-05-12?00:12??mypla
?????文件???????8892??2012-05-12?00:06??mypla
?????文件????6311936??2012-05-08?21:02??mypla
?????文件???????7746??2012-05-08?21:01??mypla
?????文件???????1919??2012-05-08?21:01??mypla
?????文件????????143??2012-05-08?21:01??mypla
?????文件??????12426??2012-05-12?00:06??mypla
?????文件???????1946??2012-05-11?23:53??mypla
?????文件??????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\mypla
?????文件????2514440??2012-05-12?00:06??Debug\mypla
?????文件??????17738??2012-05-11?23:55??Debug\mypla
?????文件????5458532??2012-05-11?22:08??Debug\mypla
?????文件????4056064??2012-05-12?00:06??Debug\mypla
?????文件??????10564??2012-05-12?00:06??Debug\mypla
?????文件??????48241??2012-05-12?00:06??Debug\mypla
?????文件?????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\mypla
?????文件????????400??2012-05-08?09:38??res\mypla
............此處省略7個文件信息
- 上一篇:C語言程序設計 第三版 何欽銘
- 下一篇:校園導游源代碼程序C++
評論
共有 條評論