Commit 8a76d1e8 authored by Evan Stade's avatar Evan Stade Committed by Alexandre Julliard

gdiplus: Added GdipStartPathFigure.

parent 852aac8b
...@@ -578,7 +578,7 @@ ...@@ -578,7 +578,7 @@
@ stub GdipSetTextureWrapMode @ stub GdipSetTextureWrapMode
@ stub GdipSetWorldTransform @ stub GdipSetWorldTransform
@ stub GdipShearMatrix @ stub GdipShearMatrix
@ stub GdipStartPathFigure @ stdcall GdipStartPathFigure(ptr)
@ stub GdipStringFormatGetGenericDefault @ stub GdipStringFormatGetGenericDefault
@ stub GdipStringFormatGetGenericTypographic @ stub GdipStringFormatGetGenericTypographic
@ stub GdipTestControl @ stub GdipTestControl
......
...@@ -212,3 +212,13 @@ GpStatus WINGDIPAPI GdipGetPointCount(GpPath *path, INT *count) ...@@ -212,3 +212,13 @@ GpStatus WINGDIPAPI GdipGetPointCount(GpPath *path, INT *count)
return Ok; return Ok;
} }
GpStatus WINGDIPAPI GdipStartPathFigure(GpPath *path)
{
if(!path)
return InvalidParameter;
path->newfigure = TRUE;
return Ok;
}
...@@ -57,6 +57,7 @@ GpStatus WINGDIPAPI GdipDeletePath(GpPath*); ...@@ -57,6 +57,7 @@ GpStatus WINGDIPAPI GdipDeletePath(GpPath*);
GpStatus WINGDIPAPI GdipGetPathPoints(GpPath*,GpPointF*,INT); GpStatus WINGDIPAPI GdipGetPathPoints(GpPath*,GpPointF*,INT);
GpStatus WINGDIPAPI GdipGetPathTypes(GpPath*,BYTE*,INT); GpStatus WINGDIPAPI GdipGetPathTypes(GpPath*,BYTE*,INT);
GpStatus WINGDIPAPI GdipGetPointCount(GpPath*,INT*); GpStatus WINGDIPAPI GdipGetPointCount(GpPath*,INT*);
GpStatus WINGDIPAPI GdipStartPathFigure(GpPath*);
#ifdef __cplusplus #ifdef __cplusplus
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment