gdiplus: Stub GdipGetRegionScansCount.
This commit is contained in:
parent
ab124aa6b8
commit
10990f5898
|
@ -381,7 +381,7 @@
|
||||||
@ stdcall GdipGetRegionDataSize(ptr ptr)
|
@ stdcall GdipGetRegionDataSize(ptr ptr)
|
||||||
@ stdcall GdipGetRegionHRgn(ptr ptr ptr)
|
@ stdcall GdipGetRegionHRgn(ptr ptr ptr)
|
||||||
@ stub GdipGetRegionScans
|
@ stub GdipGetRegionScans
|
||||||
@ stub GdipGetRegionScansCount
|
@ stdcall GdipGetRegionScansCount(ptr ptr ptr)
|
||||||
@ stub GdipGetRegionScansI
|
@ stub GdipGetRegionScansI
|
||||||
@ stub GdipGetRenderingOrigin
|
@ stub GdipGetRenderingOrigin
|
||||||
@ stdcall GdipGetSmoothingMode(ptr ptr)
|
@ stdcall GdipGetSmoothingMode(ptr ptr)
|
||||||
|
|
|
@ -1306,3 +1306,15 @@ GpStatus WINGDIPAPI GdipTranslateRegionI(GpRegion *region, INT dx, INT dy)
|
||||||
|
|
||||||
return GdipTranslateRegion(region, (REAL)dx, (REAL)dy);
|
return GdipTranslateRegion(region, (REAL)dx, (REAL)dy);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GpStatus WINGDIPAPI GdipGetRegionScansCount(GpRegion *region, UINT *count, GpMatrix *matrix)
|
||||||
|
{
|
||||||
|
static int calls;
|
||||||
|
|
||||||
|
TRACE("(%p, %p, %p)\n", region, count, matrix);
|
||||||
|
|
||||||
|
if (!(calls++))
|
||||||
|
FIXME("not implemented\n");
|
||||||
|
|
||||||
|
return NotImplemented;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue