资源简介
为VC++程序添加背景声音,事例与源码,很简单!
代码片段和文件信息
// music.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “music.h“
#include “musicDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMusicApp
BEGIN_MESSAGE_MAP(CMusicApp CWinApp)
//{{AFX_MSG_MAP(CMusicApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMusicApp construction
CMusicApp::CMusicApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMusicApp object
CMusicApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CMusicApp initialization
BOOL CMusicApp::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
CMusicDlg 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 2010-07-28 12:00 music\
目录 0 2010-07-25 22:42 music\Debug\
文件 319554 2010-07-25 22:42 music\Debug\music.exe
文件 188856 2010-07-25 22:42 music\Debug\music.ilk
文件 12752 2010-07-25 22:05 music\Debug\music.obj
文件 5494912 2010-07-25 22:05 music\Debug\music.pch
文件 345088 2010-07-25 22:42 music\Debug\music.pdb
文件 179764 2010-07-25 22:05 music\Debug\music.res
文件 26950 2010-07-25 22:42 music\Debug\musicDlg.obj
文件 105428 2010-07-25 22:05 music\Debug\StdAfx.obj
文件 205824 2010-07-28 12:00 music\Debug\vc60.idb
文件 380928 2010-07-25 22:42 music\Debug\vc60.pdb
文件 212764 2010-07-25 22:05 music\music.aps
文件 923 2010-07-28 12:00 music\music.clw
文件 2049 2010-07-25 21:45 music\music.cpp
文件 4209 2010-07-25 22:10 music\music.dsp
文件 533 2010-07-25 21:45 music\music.dsw
文件 1313 2010-07-25 21:45 music\music.h
文件 50176 2010-07-28 12:00 music\music.ncb
文件 48640 2010-07-28 12:00 music\music.opt
文件 244 2010-07-28 12:00 music\music.plg
文件 5245 2010-07-25 22:05 music\music.rc
文件 4252 2010-07-25 22:42 music\musicDlg.cpp
文件 1331 2010-07-25 21:45 music\musicDlg.h
文件 3561 2010-07-25 21:45 music\ReadMe.txt
目录 0 2010-07-25 22:05 music\res\
文件 1078 2010-07-25 21:45 music\res\music.ico
文件 397 2010-07-25 21:45 music\res\music.rc2
文件 177344 2010-07-25 22:05 music\res\reading.wav
文件 682 2010-07-25 22:05 music\resource.h
文件 207 2010-07-25 21:45 music\StdAfx.cpp
............此处省略1个文件信息
- 上一篇:图形学实验八消隐源码+文档
- 下一篇:c语言中使用SIMD指令程序
评论
共有 条评论