itvtuner.h

来自「这是一个SIGMA方案的PMP播放器的UCLINUX程序,可播放DVD,VCD,」· C头文件 代码 · 共 59 行

H
59
字号
/******************************************************************************  Itvtuner.h : Type Definitions for video decoder interface*  REALmagic Quasar Hardware Library*  Created by Aurelia Popa-Radu*  Copyright Sigma Designs Inc*  Sigma Designs Proprietary and confidential*  Created on 3/18/01*  Description:*****************************************************************************/#ifdef __cplusplusextern "C"{#endif #ifndef __ITVTUNER_H__#define __ITVTUNER_H__//////////////////////////////////////////////////////////////////////////////// TvTuner Abstract interfacestypedef HWLIB_INTERFACE tagITvTuner{	struct tagITvTunerVtbl *lpVtbl;} ITvTuner;typedef struct tagITvTunerVtbl{	HWLIB_BEGIN_INTERFACE		void	( *Delete)			(ITvTuner* This, BOOL bDeleteObject);		void	( *Init)			(ITvTuner* This);		QRESULT	( *Write)			(ITvTuner* This, BYTE Address, BYTE* pData);		QRESULT	( *Read)			(ITvTuner* This, BYTE Address, BYTE* pData);		void	( *InitPropertySet)	(ITvTuner* This, void* pPropSet, DWORD dwSize);		QRESULT ( *SetProperty)		(ITvTuner* This, DWORD PropSet, DWORD PropId, DWORD Flags, void* pData, DWORD dwSizeIn, DWORD* pdwSizeOut);		QRESULT ( *GetProperty)		(ITvTuner* This, DWORD PropSet, DWORD PropId, DWORD Flags, void* pData, DWORD dwSizeIn, DWORD* pdwSizeOut);		QRESULT	( *Test)			(ITvTuner* This);		HWLIB_END_INTERFACE} ITvTunerVtbl;#define ITvTuner_Delete(this,bDeleteObject)			(this)->lpVtbl->Delete(this, bDeleteObject)#define ITvTuner_Init(this)							(this)->lpVtbl->Init(this)#define ITvTuner_Write(this, Address, pData)		(this)->lpVtbl->Write(this, Address, pData)#define ITvTuner_Read(this, Address, pData)			(this)->lpVtbl->Read(this, Address, pData)#define ITvTuner_InitPropertySet(this, pPropSet, size)	(this)->lpVtbl->InitPropertySet(this, pPropSet, size)#define ITvTuner_SetProperty(this, PropSet, PropId, Flags, pData, dwSizeIn, pdwSizeOut)\	(this)->lpVtbl->SetProperty(this, PropSet, PropId, Flags, pData, dwSizeIn, pdwSizeOut)#define ITvTuner_GetProperty(this, PropSet, PropId, Flags, pData, dwSizeIn, pdwSizeOut)\	(this)->lpVtbl->GetProperty(this, PropSet, PropId, Flags, pData, dwSizeIn, pdwSizeOut)#define ITvTuner_Test(this)							(this)->lpVtbl->Test(this)#endif#ifdef __cplusplus}#endif 

⌨️ 快捷键说明

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