资源简介
mfc入门mp3播放器,基于mfc,适合入门
代码片段和文件信息
// MP3.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “MP3.h“
#include “MP3Dlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMP3App
BEGIN_MESSAGE_MAP(CMP3App CWinApp)
//{{AFX_MSG_MAP(CMP3App)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMP3App construction
CMP3App::CMP3App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMP3App object
CMP3App theApp;
/////////////////////////////////////////////////////////////////////////////
// CMP3App initialization
BOOL CMP3App::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
CMP3Dlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-08-09 11:30 MP3\
目录 0 2014-08-01 11:54 MP3\Debug\
文件 106544 2014-08-01 11:54 MP3\Debug\MP3.exe
文件 215320 2014-08-01 11:54 MP3\Debug\MP3.ilk
文件 18358 2014-08-01 11:54 MP3\Debug\MP3.obj
文件 5493960 2014-07-31 16:48 MP3\Debug\MP3.pch
文件 386048 2014-08-01 11:54 MP3\Debug\MP3.pdb
文件 2548 2014-07-31 16:48 MP3\Debug\MP3.res
文件 10800 2014-08-01 11:54 MP3\Debug\MP3Control.obj
文件 36598 2014-08-01 11:54 MP3\Debug\MP3Dlg.obj
文件 105382 2014-07-31 16:48 MP3\Debug\StdAfx.obj
文件 222208 2014-08-01 11:54 MP3\Debug\vc60.idb
文件 380928 2014-08-01 11:54 MP3\Debug\vc60.pdb
文件 35432 2014-07-31 16:47 MP3\MP3.APS
文件 1417 2014-08-09 11:30 MP3\MP3.clw
文件 2021 2014-07-31 16:39 MP3\MP3.cpp
文件 4275 2014-07-31 18:37 MP3\MP3.dsp
文件 512 2014-07-31 16:39 MP3\MP3.dsw
文件 1231 2014-07-31 16:47 MP3\MP3.h
文件 58368 2014-08-09 11:30 MP3\MP3.ncb
文件 50688 2014-08-09 11:30 MP3\MP3.opt
文件 995 2014-08-01 11:54 MP3\MP3.plg
文件 5332 2014-07-31 16:47 MP3\MP3.rc
文件 1486 2014-08-01 11:53 MP3\MP3Control.cpp
文件 359 2014-08-01 11:54 MP3\MP3Control.h
文件 5279 2014-08-01 11:48 MP3\MP3Dlg.cpp
文件 1542 2014-08-01 11:47 MP3\MP3Dlg.h
文件 3525 2014-07-31 16:39 MP3\ReadMe.txt
文件 205 2014-07-31 16:39 MP3\StdAfx.cpp
文件 1054 2014-07-31 16:39 MP3\StdAfx.h
目录 0 2014-07-31 16:39 MP3\res\
............此处省略3个文件信息
- 上一篇:UART串口通信论文参考
- 下一篇:Effective.Modern.C++中文版本
评论
共有 条评论