gdiplus: Added GdipSetPageUnit.
diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index 64ac4fe..7a26d87 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -701,6 +701,7 @@
(*graphics)->compqual = CompositingQualityDefault;
(*graphics)->interpolation = InterpolationModeDefault;
(*graphics)->pixeloffset = PixelOffsetModeDefault;
+ (*graphics)->unit = UnitDisplay;
return Ok;
}
@@ -1018,6 +1019,16 @@
return Ok;
}
+GpStatus WINGDIPAPI GdipGetPageUnit(GpGraphics *graphics, GpUnit *unit)
+{
+ if(!graphics || !unit)
+ return InvalidParameter;
+
+ *unit = graphics->unit;
+
+ return Ok;
+}
+
/* FIXME: Pixel offset mode is not used anywhere except the getter/setter. */
GpStatus WINGDIPAPI GdipGetPixelOffsetMode(GpGraphics *graphics, PixelOffsetMode
*mode)
@@ -1083,6 +1094,16 @@
return Ok;
}
+GpStatus WINGDIPAPI GdipSetPageUnit(GpGraphics *graphics, GpUnit unit)
+{
+ if(!graphics)
+ return InvalidParameter;
+
+ graphics->unit = unit;
+
+ return Ok;
+}
+
GpStatus WINGDIPAPI GdipSetPixelOffsetMode(GpGraphics *graphics, PixelOffsetMode
mode)
{