Module: wine Branch: master Commit: c7bdc8881204a88d68104fbb77e961a04e74756c URL: http://source.winehq.org/git/wine.git/?a=commit;h=c7bdc8881204a88d68104fbb77... Author: Vincent Povirk <vincent(a)codeweavers.com> Date: Mon Nov 2 15:16:29 2015 -0600 gdiplus: Return Ok from GdipSetMetafileDownLevelRasterizationLimit. Until we have a reason to use this value (application asks for it or we're building the emf part of a dual emf+), there's no need to worry about this. Signed-off-by: Vincent Povirk <vincent(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/gdiplus/metafile.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/dlls/gdiplus/metafile.c b/dlls/gdiplus/metafile.c index 6d7048a..ad1b7fc 100644 --- a/dlls/gdiplus/metafile.c +++ b/dlls/gdiplus/metafile.c @@ -1141,14 +1141,9 @@ GpStatus WINGDIPAPI GdipCreateMetafileFromStream(IStream *stream, GpStatus WINGDIPAPI GdipSetMetafileDownLevelRasterizationLimit(GpMetafile *metafile, UINT limitDpi) { - static int calls; - TRACE("(%p,%u)\n", metafile, limitDpi); - if(!(calls++)) - FIXME("not implemented\n"); - - return NotImplemented; + return Ok; } GpStatus WINGDIPAPI GdipConvertToEmfPlus(const GpGraphics* ref,