gdiplus: Add a stub for GdipSetEffectParameters.
This commit is contained in:
parent
a1394d4d48
commit
20a8cf6417
|
@ -519,7 +519,7 @@
|
||||||
@ stdcall GdipSetCustomLineCapStrokeCaps(ptr long long)
|
@ stdcall GdipSetCustomLineCapStrokeCaps(ptr long long)
|
||||||
@ stdcall GdipSetCustomLineCapStrokeJoin(ptr long)
|
@ stdcall GdipSetCustomLineCapStrokeJoin(ptr long)
|
||||||
@ stdcall GdipSetCustomLineCapWidthScale(ptr long)
|
@ stdcall GdipSetCustomLineCapWidthScale(ptr long)
|
||||||
@ stub GdipSetEffectParameters
|
@ stdcall GdipSetEffectParameters(ptr ptr long)
|
||||||
@ stub GdipSetEmpty
|
@ stub GdipSetEmpty
|
||||||
@ stub GdipSetImageAttributesCachedBackground
|
@ stub GdipSetImageAttributesCachedBackground
|
||||||
@ stdcall GdipSetImageAttributesColorKeys(ptr long long long long)
|
@ stdcall GdipSetImageAttributesColorKeys(ptr long long long long)
|
||||||
|
|
|
@ -1096,3 +1096,14 @@ GpStatus WINGDIPAPI GdipCreateBitmapFromHBITMAP(HBITMAP hbm, HPALETTE hpal, GpBi
|
||||||
|
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GpStatus WINGDIPAPI GdipSetEffectParameters(CGpEffect *effect,
|
||||||
|
const VOID *params, const UINT size)
|
||||||
|
{
|
||||||
|
static int calls;
|
||||||
|
|
||||||
|
if(!(calls++))
|
||||||
|
FIXME("not implemented\n");
|
||||||
|
|
||||||
|
return NotImplemented;
|
||||||
|
}
|
||||||
|
|
|
@ -39,6 +39,7 @@ class GpTexture : public GpBrush {};
|
||||||
class GpFont {};
|
class GpFont {};
|
||||||
class GpStringFormat {};
|
class GpStringFormat {};
|
||||||
class GpRegion {};
|
class GpRegion {};
|
||||||
|
class CGpEffect {};
|
||||||
|
|
||||||
#else /* end of c++ declarations */
|
#else /* end of c++ declarations */
|
||||||
|
|
||||||
|
@ -60,6 +61,7 @@ typedef struct GpTexture GpTexture;
|
||||||
typedef struct GpFont GpFont;
|
typedef struct GpFont GpFont;
|
||||||
typedef struct GpStringFormat GpStringFormat;
|
typedef struct GpStringFormat GpStringFormat;
|
||||||
typedef struct GpRegion GpRegion;
|
typedef struct GpRegion GpRegion;
|
||||||
|
typedef struct CGpEffect CGpEffect;
|
||||||
|
|
||||||
#endif /* end of c declarations */
|
#endif /* end of c declarations */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue