資源簡介
基于mfc十段均衡器的設計,運用語音合成技術,實現音樂的不同音效的播放。
代碼片段和文件信息
//?EQ.cpp?:?Defines?the?class?behaviors?for?the?application.
//
#include?“stdafx.h“
#include?“EQ.h“
#include?“EQDlg.h“
#ifdef?_DEBUG
#define?new?DEBUG_NEW
#undef?THIS_FILE
static?char?THIS_FILE[]?=?__FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
//?CEQApp
BEGIN_MESSAGE_MAP(CEQApp?CWinApp)
//{{AFX_MSG_MAP(CEQApp)
//?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()
/////////////////////////////////////////////////////////////////////////////
//?CEQApp?construction
CEQApp::CEQApp()
{
//?TODO:?add?construction?code?here
//?Place?all?significant?initialization?in?InitInstance
}
/////////////////////////////////////////////////////////////////////////////
//?The?one?and?only?CEQApp?object
CEQApp?theApp;
/////////////////////////////////////////////////////////////////////////////
//?CEQApp?initialization
BOOL?CEQApp::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
CEQDlg?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;
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件??????42520??2014-04-27?22:57??mfc?十段均衡器設計\EQ.APS
?????文件???????3511??2014-04-27?22:57??mfc?十段均衡器設計\EQ.clw
?????文件???????2007??2014-04-27?22:57??mfc?十段均衡器設計\EQ.cpp
?????文件???????4794??2014-04-27?22:57??mfc?十段均衡器設計\EQ.dsp
?????文件????????510??2014-04-27?22:57??mfc?十段均衡器設計\EQ.dsw
?????文件???????1280??2014-04-27?22:57??mfc?十段均衡器設計\EQ.h
?????文件?????484352??2014-04-27?22:57??mfc?十段均衡器設計\EQ.ncb
?????文件?????110592??2014-04-27?22:57??mfc?十段均衡器設計\EQ.opt
?????文件???????2319??2014-04-27?22:57??mfc?十段均衡器設計\EQ.plg
?????文件???????9836??2014-04-27?22:57??mfc?十段均衡器設計\EQ.rc
?????文件???55595008??2014-04-27?22:57??mfc?十段均衡器設計\EQ.sdf
?????文件????????870??2014-04-27?22:57??mfc?十段均衡器設計\EQ.sln
?????文件???????8526??2014-04-27?22:57??mfc?十段均衡器設計\EQ.vcxproj
?????文件???????2855??2014-04-27?22:57??mfc?十段均衡器設計\EQ.vcxproj.filters
?????文件????????143??2014-04-27?22:57??mfc?十段均衡器設計\EQ.vcxproj.user
?????文件??????13260??2014-04-27?22:57??mfc?十段均衡器設計\EQDlg.cpp
?????文件???????2540??2014-04-27?22:57??mfc?十段均衡器設計\EQDlg.h
?????文件???????4905??2014-04-27?22:57??mfc?十段均衡器設計\Equalizer.cpp
?????文件???????1155??2014-04-27?22:57??mfc?十段均衡器設計\Equalizer.h
?????文件???74776576??2014-04-27?22:58??mfc?十段均衡器設計\ipch\eq-102a88f0\eq-5d5c6d4c.ipch
?????文件???75300864??2014-04-27?22:58??mfc?十段均衡器設計\ipch\eq-102a88f0\eq-860f1f86.ipch
?????文件???????3507??2014-04-27?22:57??mfc?十段均衡器設計\ReadMe.txt
?????文件???????1078??2014-04-27?22:57??mfc?十段均衡器設計\res\EQ.ico
?????文件????????394??2014-04-27?22:57??mfc?十段均衡器設計\res\EQ.rc2
????..A.SH.??????4096??2014-04-27?22:59??mfc?十段均衡器設計\res\Thumbs.db
?????文件???????2014??2014-04-27?22:57??mfc?十段均衡器設計\resource.h
?????文件????????204??2014-04-27?22:57??mfc?十段均衡器設計\StdAfx.cpp
?????文件???????1054??2014-04-27?22:57??mfc?十段均衡器設計\StdAfx.h
?????文件???????4739??2014-04-27?22:57??mfc?十段均衡器設計\_fzhWAVEDECREC.cpp
?????文件???????1084??2014-04-27?22:57??mfc?十段均衡器設計\_fzhWAVEDECREC.h
............此處省略15個文件信息
評論
共有 條評論