gdiplus: Add GdipSaveAdd stub.

This commit is contained in:
Dmitry Timoshkov 2012-06-29 18:48:50 +09:00 committed by Alexandre Julliard
parent cfa1813e1b
commit 91cf72f00f
2 changed files with 10 additions and 1 deletions

View File

@ -471,7 +471,7 @@
471 stdcall GdipRotatePenTransform(ptr float long)
472 stdcall GdipRotateTextureTransform(ptr float long)
473 stdcall GdipRotateWorldTransform(ptr float long)
474 stub GdipSaveAdd
474 stdcall GdipSaveAdd(ptr ptr)
475 stub GdipSaveAddImage
476 stdcall GdipSaveGraphics(ptr ptr)
477 stdcall GdipSaveImageToFile(ptr ptr ptr ptr)

View File

@ -3458,6 +3458,15 @@ GpStatus WINGDIPAPI GdipSaveImageToStream(GpImage *image, IStream* stream,
return stat;
}
/*****************************************************************************
* GdipSaveAdd [GDIPLUS.@]
*/
GpStatus WINGDIPAPI GdipSaveAdd(GpImage *image, GDIPCONST EncoderParameters *params)
{
FIXME("(%p,%p): stub\n", image, params);
return Ok;
}
/*****************************************************************************
* GdipGetImagePalette [GDIPLUS.@]
*/