gdiplus: Added GdipStartPathFigure.
This commit is contained in:
parent
852aac8b54
commit
8a76d1e82c
|
@ -578,7 +578,7 @@
|
|||
@ stub GdipSetTextureWrapMode
|
||||
@ stub GdipSetWorldTransform
|
||||
@ stub GdipShearMatrix
|
||||
@ stub GdipStartPathFigure
|
||||
@ stdcall GdipStartPathFigure(ptr)
|
||||
@ stub GdipStringFormatGetGenericDefault
|
||||
@ stub GdipStringFormatGetGenericTypographic
|
||||
@ stub GdipTestControl
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue