inputmedia.h
来自「PocketMVP V0.8082503 source for Pocket 的」· C头文件 代码 · 共 35 行
H
35 行
/***************************************************************************************
*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 + =
减小字号Ctrl + -
显示快捷键?