?? com.h
字號:
/* * Modified for use with MPlayer, detailed changelog at * http://svn.mplayerhq.hu/mplayer/trunk/ * $Id$ */#ifndef AVIFILE_COM_H#define AVIFILE_COM_H#if defined __MINGW32__ || defined HAVE_STDINT_H#include <stdint.h>#else#include <inttypes.h>#endif/** * Internal functions and structures for COM emulation code. */#if !defined(WIN32) || defined(__CYGWIN__) || defined(__MINGW32__)#ifdef __cplusplusextern "C" {#endif#ifndef GUID_TYPE#define GUID_TYPEtypedef struct{ uint32_t f1; uint16_t f2; uint16_t f3; uint8_t f4[8];} GUID;#endifextern const GUID IID_IUnknown;extern const GUID IID_IClassFactory;typedef long (*GETCLASSOBJECT) (GUID* clsid, const GUID* iid, void** ppv);int RegisterComClass(const GUID* clsid, GETCLASSOBJECT gcs);int UnregisterComClass(const GUID* clsid, GETCLASSOBJECT gcs);#ifndef STDCALL#define STDCALL __attribute__((__stdcall__))#endifvoid* STDCALL CoTaskMemAlloc(unsigned long cb);void STDCALL CoTaskMemFree(void* cb);struct IUnknown;struct IClassFactory;struct IUnknown_vt{ long STDCALL (*QueryInterface)(struct IUnknown* _this, const GUID* iid, void** ppv); long STDCALL (*AddRef)(struct IUnknown* _this) ; long STDCALL (*Release)(struct IUnknown* _this) ;} ;typedef struct IUnknown{ struct IUnknown_vt* vt;} IUnknown;struct IClassFactory_vt{ long STDCALL (*QueryInterface)(struct IUnknown* _this, const GUID* iid, void** ppv); long STDCALL (*AddRef)(struct IUnknown* _this) ; long STDCALL (*Release)(struct IUnknown* _this) ; long STDCALL (*CreateInstance)(struct IClassFactory* _this, struct IUnknown* pUnkOuter, const GUID* riid, void** ppvObject);};struct IClassFactory{ struct IClassFactory_vt* vt;};long CoCreateInstance(GUID* rclsid, struct IUnknown* pUnkOuter, long dwClsContext, const GUID* riid, void** ppv);#ifdef __cplusplus};#endif /* __cplusplus */#endif /* WIN32 */#endif /* AVIFILE_COM_H */
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -