iobject.h
来自「这是一个SIGMA方案的PMP播放器的UCLINUX程序,可播放DVD,VCD,」· C头文件 代码 · 共 47 行
H
47 行
/****************************************************************************** IObject.h : Type Definitions for IObject interface* REALmagic Quasar Hardware Library* Created by Michael Ignaszewski* Copyright Sigma Designs Inc* Sigma Designs Proprietary and confidential* Created on 8/23/99* Description:*****************************************************************************/#ifndef __IObject_h__#define __IObject_h__#ifdef __cplusplusextern "C"{#endif /*+-------------------------------------------------------------------------** Sigma Designs* Copyright 1999 Sigma Designs, Inc.**--------------------------------------------------------------------------*/#ifndef __IObject_INTERFACE_DEFINED#define __IObject_INTERFACE_DEFINEDtypedef HWLIB_INTERFACE tagIObject{ struct tagIObjectVtbl *lpVtbl;}IObject;typedef struct tagIObjectVtbl{ void ( *Delete) (IObject * This, BOOL bDeleteObject);} IObjectVtbl;#define IObject_Delete(This,bDelete) (This)->lpVtbl->Delete(This,bDelete)#endif /* __IObject_INTERFACE_DEFINED__ */#ifdef __cplusplus}#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?