gdiplus: Add GdipSaveAdd stub.
This commit is contained in:
parent
cfa1813e1b
commit
91cf72f00f
|
@ -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)
|
||||
|
|
|
@ -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.@]
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue