88 lines
3.7 KiB
C
88 lines
3.7 KiB
C
/**
|
|
* This file has no copyright assigned and is placed in the Public Domain.
|
|
* This file is part of the w64 mingw-runtime package.
|
|
* No warranty is given; refer to the file DISCLAIMER within this package.
|
|
*/
|
|
#ifndef _IImgCtxObjects_H_
|
|
#define _IImgCtxObjects_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
typedef void (CALLBACK *PFNIMGCTXCALLBACK)(void *,void *);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#define IMGCHG_SIZE 0x0001
|
|
#define IMGCHG_VIEW 0x0002
|
|
#define IMGCHG_COMPLETE 0x0004
|
|
#define IMGCHG_ANIMATE 0x0008
|
|
#define IMGCHG_MASK 0x000F
|
|
|
|
#define IMGLOAD_NOTLOADED 0x00100000
|
|
#define IMGLOAD_LOADING 0x00200000
|
|
#define IMGLOAD_STOPPED 0x00400000
|
|
#define IMGLOAD_ERROR 0x00800000
|
|
#define IMGLOAD_COMPLETE 0x01000000
|
|
#define IMGLOAD_MASK 0x01F00000
|
|
|
|
#define IMGBITS_NONE 0x02000000
|
|
#define IMGBITS_PARTIAL 0x04000000
|
|
#define IMGBITS_TOTAL 0x08000000
|
|
#define IMGBITS_MASK 0x0E000000
|
|
|
|
#define IMGANIM_ANIMATED 0x10000000
|
|
#define IMGANIM_MASK 0x10000000
|
|
|
|
#define IMGTRANS_OPAQUE 0x20000000
|
|
#define IMGTRANS_MASK 0x20000000
|
|
|
|
#define DWN_COLORMODE 0x0000003F
|
|
#define DWN_DOWNLOADONLY 0x00000040
|
|
#define DWN_FORCEDITHER 0x00000080
|
|
#define DWN_RAWIMAGE 0x00000100
|
|
#define DWN_MIRRORIMAGE 0x00000200
|
|
|
|
#undef INTERFACE
|
|
#define INTERFACE IImgCtx
|
|
|
|
DEFINE_GUID(IID_IImgCtx,0x3050f3d7,0x98b5,0x11cf,0xbb,0x82,0x00,0xaa,0x00,0xbd,0xce,0x0b);
|
|
|
|
DECLARE_INTERFACE_(IImgCtx,IUnknown) {
|
|
#ifndef NO_BASEINTERFACE_FUNCS
|
|
STDMETHOD(QueryInterface)(THIS_ REFIID riid,LPVOID *ppvObj) PURE;
|
|
STDMETHOD_(ULONG,AddRef)(THIS) PURE;
|
|
STDMETHOD_(ULONG,Release)(THIS) PURE;
|
|
#endif
|
|
STDMETHOD(Load)(THIS_ LPCWSTR pszUrl,DWORD dwFlags) PURE;
|
|
STDMETHOD(SelectChanges)(THIS_ ULONG ulChgOn,ULONG ulChgOff,WINBOOL fSignal) PURE;
|
|
STDMETHOD(SetCallback)(THIS_ PFNIMGCTXCALLBACK pfn,void *pvPrivateData) PURE;
|
|
STDMETHOD(Disconnect)(THIS) PURE;
|
|
STDMETHOD(GetUpdateRects)(THIS_ struct tagRECT *prc,struct tagRECT *prcImg,long *pcrc) PURE;
|
|
STDMETHOD(GetStateInfo)(THIS_ ULONG *pulState,struct tagSIZE *psize,WINBOOL fClearChanges) PURE;
|
|
STDMETHOD(GetPalette)(THIS_ HPALETTE *phpal) PURE;
|
|
STDMETHOD(Draw)(THIS_ HDC hdc,struct tagRECT *prcBounds) PURE;
|
|
STDMETHOD(Tile)(THIS_ HDC hdc,struct tagPOINT *pptBackOrg,struct tagRECT *prcClip,struct tagSIZE *psize) PURE;
|
|
STDMETHOD(StretchBlt)(THIS_ HDC hdc,int dstX,int dstY,int dstXE,int dstYE,int srcX,int srcY,int srcXE,int srcYE,DWORD dwROP) PURE;
|
|
};
|
|
|
|
#ifdef COBJMACROS
|
|
#define IImgCtx_QueryInterface(This,riid,ppvObject) (This)->lpVtbl->QueryInterface(This,riid,ppvObject)
|
|
#define IImgCtx_AddRef(This) (This)->lpVtbl->AddRef(This)
|
|
#define IImgCtx_Release(This) (This)->lpVtbl->Release(This)
|
|
#define IImgCtx_Load(This,pszUrl,dwFlags) (This)->lpVtbl->Load(This,pszUrl,dwFlags)
|
|
#define IImgCtx_Draw(This,hdc,prcBounds) (This)->lpVtbl->Draw(This,hdc,prcBounds)
|
|
#define IImgCtx_Tile(This,hdc,pptBackOrg,prcClip,psize) (This)->lpVtbl->Tile(This,hdc,pptBackOrg,prcClip,psize)
|
|
#define IImgCtx_GetUpdateRects(This,prc,prcImg,pcrc) (This)->lpVtbl->GetUpdateRects(This,prc,prcImg,pcrc)
|
|
#define IImgCtx_GetStateInfo(This,pulState,psize,fClearChanges) (This)->lpVtbl->GetStateInfo(This,pulState,psize,fClearChanges)
|
|
#define IImgCtx_GetPalette(This,phpal) (This)->lpVtbl->GetPalette(This,phpal)
|
|
#define IImgCtx_SelectChanges(This,ulChgOn,ulChgOff,fSignal) (This)->lpVtbl->SelectChanges(This,ulChgOn,ulChgOff,fSignal)
|
|
#define IImgCtx_SetCallback(This,pfnCallback,pvPrivateData) (This)->lpVtbl->SetCallback(This,pfnCallback,pvPrivateData)
|
|
#define IImgCtx_Disconnect(This) (This)->lpVtbl->Disconnect(This)
|
|
#define IImgCtx_StretchBlt(This,hdc,dstX,dstY,dstXE,dstYE,srcX,srcY,srcXE,srcYE,dwROP) (This)->lpVtbl->StretchBlt(This,hdc,dstX,dstY,dstXE,dstYE,srcX,srcY,srcXE,srcYE,dwROP)
|
|
#endif
|
|
|
|
DEFINE_GUID(CLSID_IImgCtx,0x3050f3d6,0x98b5,0x11cf,0xbb,0x82,0x00,0xaa,0x00,0xbd,0xce,0x0b);
|
|
#endif
|