gdiplus: Add a stub for GdipSetMetafileDownLevelRasterizationLimit.

This commit is contained in:
Lei Zhang 2008-04-10 12:40:21 -07:00 committed by Alexandre Julliard
parent 82d0144912
commit 54a06642f4
2 changed files with 12 additions and 1 deletions

View File

@ -544,7 +544,7 @@
@ stdcall GdipSetLineTransform(ptr ptr) @ stdcall GdipSetLineTransform(ptr ptr)
@ stdcall GdipSetLineWrapMode(ptr long) @ stdcall GdipSetLineWrapMode(ptr long)
@ stdcall GdipSetMatrixElements(ptr long long long long long long) @ stdcall GdipSetMatrixElements(ptr long long long long long long)
@ stub GdipSetMetafileDownLevelRasterizationLimit @ stdcall GdipSetMetafileDownLevelRasterizationLimit(ptr long)
@ stdcall GdipSetPageScale(ptr long) @ stdcall GdipSetPageScale(ptr long)
@ stdcall GdipSetPageUnit(ptr long) @ stdcall GdipSetPageUnit(ptr long)
@ stdcall GdipSetPathFillMode(ptr long) @ stdcall GdipSetPathFillMode(ptr long)

View File

@ -2111,3 +2111,14 @@ GpStatus WINGDIPAPI GdipSetClipRegion(GpGraphics *graphics, GpRegion *region,
return NotImplemented; return NotImplemented;
} }
GpStatus WINGDIPAPI GdipSetMetafileDownLevelRasterizationLimit(GpGraphics *graphics,
UINT limitDpi)
{
static int calls;
if(!(calls++))
FIXME("not implemented\n");
return NotImplemented;
}