资源简介
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++
相关资源
- 数字图像处理 MFC bmp格式图片打开与保
- CSocket端口扫描源代码MFC、VC++耿网出品
- SMTP邮件发送MFC、VC++耿网出品
- MFC下实现的贪吃蛇
- MFC画图板,可以画一些基本图形,如
- 简单的基于MFC的Socket点对点对话客户
- MFC简单的客户端服务器通信软件
- MFC实现RSA算法
- 小型人事管理系统ACCESS数据库
- MFC中利用多线程实现定时器
- 图书管理系统 CMFC带界面 数据库注册
- 地图着色mfc
- 动态分区存储管理的mfc可视化实现
- MFC图库管理系统(源码
- MFC 对话框封装Dll简单实现
- MFC课设代码(扫雷游戏
- MFC定时开关机程序
- 增进版学生选课系统MFC选课系统哦!
- MFC学生成绩管理系统论文及源代码
- 网络主机的存活性探测系统设计与实
- 计算平均学分积点 C++ MFC 界面
- MFC示波器实现代码
- 用mfc编写的学生成绩管理系统含代码
- VC++MFC小游戏开发教程+扫雷+五子棋+俄
- 学生成绩管理系统基于文件的MFC mfc学
- rar文件MFC 图像处理之图像增强 图像平
- MFC 图像处理之几何运算 图像平移旋转
- 操作系统 内存管理 模拟 图形界面
- MFC界面美化
- MFC绘图直线、椭圆、矩形、网格
评论
共有 条评论