gdiplus: Add GdipCreateEffect stub.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Vincent Povirk <vincent@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
447ee4cf46
commit
e5d478c799
|
@ -610,7 +610,7 @@
|
|||
610 stdcall GdipFindFirstImageItem(ptr ptr)
|
||||
611 stub GdipFindNextImageItem
|
||||
612 stdcall GdipGetImageItemData(ptr ptr)
|
||||
613 stub GdipCreateEffect
|
||||
613 stdcall GdipCreateEffect(int128 ptr)
|
||||
614 stdcall GdipDeleteEffect(ptr)
|
||||
615 stub GdipGetEffectParameterSize
|
||||
616 stub GdipGetEffectParameters
|
||||
|
|
|
@ -5008,6 +5008,24 @@ GpStatus WINGDIPAPI GdipCreateBitmapFromHBITMAP(HBITMAP hbm, HPALETTE hpal, GpBi
|
|||
return retval;
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
* GdipCreateEffect [GDIPLUS.@]
|
||||
*/
|
||||
GpStatus WINGDIPAPI GdipCreateEffect(const GUID guid, CGpEffect **effect)
|
||||
{
|
||||
FIXME("(%s, %p): stub\n", debugstr_guid(&guid), effect);
|
||||
|
||||
if(!effect)
|
||||
return InvalidParameter;
|
||||
|
||||
*effect = NULL;
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
* GdipDeleteEffect [GDIPLUS.@]
|
||||
*/
|
||||
GpStatus WINGDIPAPI GdipDeleteEffect(CGpEffect *effect)
|
||||
{
|
||||
FIXME("(%p): stub\n", effect);
|
||||
|
|
Loading…
Reference in New Issue