gdiplus: Add a stub for GdipSetEffectParameters.

This commit is contained in:
Lei Zhang 2008-04-09 13:00:16 -07:00 committed by Alexandre Julliard
parent a1394d4d48
commit 20a8cf6417
3 changed files with 14 additions and 1 deletions

View file

@ -519,7 +519,7 @@
@ stdcall GdipSetCustomLineCapStrokeCaps(ptr long long)
@ stdcall GdipSetCustomLineCapStrokeJoin(ptr long)
@ stdcall GdipSetCustomLineCapWidthScale(ptr long)
@ stub GdipSetEffectParameters
@ stdcall GdipSetEffectParameters(ptr ptr long)
@ stub GdipSetEmpty
@ stub GdipSetImageAttributesCachedBackground
@ stdcall GdipSetImageAttributesColorKeys(ptr long long long long)

View file

@ -1096,3 +1096,14 @@ GpStatus WINGDIPAPI GdipCreateBitmapFromHBITMAP(HBITMAP hbm, HPALETTE hpal, GpBi
return retval;
}
GpStatus WINGDIPAPI GdipSetEffectParameters(CGpEffect *effect,
const VOID *params, const UINT size)
{
static int calls;
if(!(calls++))
FIXME("not implemented\n");
return NotImplemented;
}

View file

@ -39,6 +39,7 @@ class GpTexture : public GpBrush {};
class GpFont {};
class GpStringFormat {};
class GpRegion {};
class CGpEffect {};
#else /* end of c++ declarations */
@ -60,6 +61,7 @@ typedef struct GpTexture GpTexture;
typedef struct GpFont GpFont;
typedef struct GpStringFormat GpStringFormat;
typedef struct GpRegion GpRegion;
typedef struct CGpEffect CGpEffect;
#endif /* end of c declarations */