gdiplus: Add a stub for GdipSetMetafileDownLevelRasterizationLimit.
This commit is contained in:
parent
82d0144912
commit
54a06642f4
|
@ -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)
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue