gdiplus: Added GdipStartPathFigure.

This commit is contained in:
Evan Stade 2007-07-11 18:07:28 -07:00 committed by Alexandre Julliard
parent 852aac8b54
commit 8a76d1e82c
3 changed files with 12 additions and 1 deletions

View File

@ -578,7 +578,7 @@
@ stub GdipSetTextureWrapMode
@ stub GdipSetWorldTransform
@ stub GdipShearMatrix
@ stub GdipStartPathFigure
@ stdcall GdipStartPathFigure(ptr)
@ stub GdipStringFormatGetGenericDefault
@ stub GdipStringFormatGetGenericTypographic
@ stub GdipTestControl

View File

@ -212,3 +212,13 @@ GpStatus WINGDIPAPI GdipGetPointCount(GpPath *path, INT *count)
return Ok;
}
GpStatus WINGDIPAPI GdipStartPathFigure(GpPath *path)
{
if(!path)
return InvalidParameter;
path->newfigure = TRUE;
return Ok;
}

View File

@ -57,6 +57,7 @@ GpStatus WINGDIPAPI GdipDeletePath(GpPath*);
GpStatus WINGDIPAPI GdipGetPathPoints(GpPath*,GpPointF*,INT);
GpStatus WINGDIPAPI GdipGetPathTypes(GpPath*,BYTE*,INT);
GpStatus WINGDIPAPI GdipGetPointCount(GpPath*,INT*);
GpStatus WINGDIPAPI GdipStartPathFigure(GpPath*);
#ifdef __cplusplus
}