⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inputmedia.h

📁 一个播放器 使用了evc 大家可以参考下 哦
💻 H
字号:
 /***************************************************************************************
 *This program is free software; you can redistribute it and/or modify					*
 * it under the terms of the GNU General Public License as published by					*
 * the Free Software Foundation; either version 2 of the License, or					*
 * (at your option) any later version.													*
 *																						*
 * The GPL can be found at: http://www.gnu.org/copyleft/gpl.html						*
 *																						*
 *																						*	
 ****************************************************************************************
 * Authors:																			  *
 *          Marc Dukette                                                              *
 **************************************************************************************/


#ifdef INPUTMEDIA_EXPORTS
#define INPUTMEDIA_API __declspec(dllexport)
#else
#define INPUTMEDIA_API __declspec(dllimport)
#endif

// This class is exported from the Dynamic.dll
class INPUTMEDIA_API CInputMedia {
public:
	CInputMedia(void);
	// TODO: add your methods here.
};


INPUTMEDIA_API	int InputMediaRead(char *data, unsigned int size);
INPUTMEDIA_API	int InputMediaSeek(int   size, unsigned int method);

INPUTMEDIA_API	int InputMediaOpen(LPTSTR lpFilename, int mode, int type) ;
INPUTMEDIA_API	void InputMediaClose();

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -