gdiplus: Stub GdipGetRenderingOrigin.
This commit is contained in:
parent
4bcf7cbbf0
commit
85c0e83dc5
|
@ -383,7 +383,7 @@
|
|||
@ stub GdipGetRegionScans
|
||||
@ stdcall GdipGetRegionScansCount(ptr ptr ptr)
|
||||
@ stub GdipGetRegionScansI
|
||||
@ stub GdipGetRenderingOrigin
|
||||
@ stdcall GdipGetRenderingOrigin(ptr ptr ptr)
|
||||
@ stdcall GdipGetSmoothingMode(ptr ptr)
|
||||
@ stdcall GdipGetSolidFillColor(ptr ptr)
|
||||
@ stdcall GdipGetStringFormatAlign(ptr ptr)
|
||||
|
|
|
@ -4216,6 +4216,20 @@ GpStatus WINGDIPAPI GdipSetRenderingOrigin(GpGraphics *graphics, INT x, INT y)
|
|||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipGetRenderingOrigin(GpGraphics *graphics, INT *x, INT *y)
|
||||
{
|
||||
static int calls;
|
||||
|
||||
TRACE("(%p,%p,%p)\n", graphics, x, y);
|
||||
|
||||
if (!(calls++))
|
||||
FIXME("not implemented\n");
|
||||
|
||||
*x = *y = 0;
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipSetSmoothingMode(GpGraphics *graphics, SmoothingMode mode)
|
||||
{
|
||||
TRACE("(%p, %d)\n", graphics, mode);
|
||||
|
|
Loading…
Reference in New Issue