资源简介
在window下使用d3d技术实现视频播放器实现,是学习d3d以及mfc编程的好例子
代码片段和文件信息
// Player.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Player.h“
#include “PlayerDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CPlayerApp
BEGIN_MESSAGE_MAP(CPlayerApp CWinApp)
//{{AFX_MSG_MAP(CPlayerApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CPlayerApp construction
CPlayerApp::CPlayerApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CPlayerApp object
CPlayerApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CPlayerApp initialization
BOOL CPlayerApp::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
CPlayerDlg 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 2005-06-23 15:57 Pla
文件 3579 2005-06-23 15:57 Pla
文件 1324 2005-06-23 15:57 Pla
文件 2063 2005-06-23 15:57 Pla
文件 1054 2005-06-23 15:57 Pla
文件 208 2005-06-23 15:57 Pla
目录 0 2005-06-23 15:57 Pla
文件 398 2005-06-23 15:57 Pla
文件 1078 2005-06-23 15:57 Pla
文件 868 2005-06-23 15:59 Pla
文件 5492 2005-06-23 15:59 Pla
目录 0 2005-06-23 16:00 Pla
文件 1236 2005-05-17 12:50 Pla
文件 1125 2005-06-23 14:12 Pla
文件 302 2005-06-23 13:46 Pla
文件 5940 2005-05-17 12:53 Pla
文件 7476 2005-06-23 16:01 Pla
文件 1916 2005-06-23 16:08 Pla
文件 2446 2005-06-23 16:11 Pla
文件 1518 2005-06-23 16:02 Pla
文件 535 2005-06-23 16:05 Pla
文件 5095 2005-06-23 16:22 Pla
文件 4857 2005-06-23 16:24 Pla
文件 246 2005-06-24 20:33 Pla
----------- --------- ---------- ----- ----
48756 24
相关资源
- 用MFC编写的数据包校验与常用校验算
- [原创]使用MFC实现文档打印
- MFC GroupBox自绘控件,可以方便改变边
- MFC_unicode相关链接库
- MFC程序开发之多人聊天室
- Ogre嵌入MFC_DEMO
- 景区管理系统MFC版本
- 在MFC应用程序中浏览PDF、Word文档文件
- mfc调用webservice的客户端
- MFC 对对话框部分截图并保存
- 电梯模拟MFC
- SuperGrid-MFC_ListCtrl控件扩展(让ListCt
- MFC实现MD5值生成工具文件和字符串都
- 在VC 6.0的opencv环境下视频显示与捕捉
- VC++ MFC的餐厅点餐系统
- VC/MFC使用日期控件设置、获取日期时
- Ogre for mfc
- 约瑟夫环MFC窗体版
- 学生成绩管理系统(MFC)
- Visual Studio 2013开发MFC程序对Excel 2010进
- MFC 快速导出数据至ExcelSaveToExcel组件
- VC图像处理系列(傅立叶变换篇源码
- 多边形区域的扫描线填充、扫描线种
- MFC实现简单网络聊天程
- MFCPanel控件
- mfc做的局域网聊天室
- 简单的MFC 多人在线聊天 客户端
- 幸运52的小游戏 价格的猜测
- 聊天+传送文件+设置字体及颜色vs201
- 易语言D3D模块源码
评论
共有 条评论