gdiplus: Stub GdipWidenPath.
This commit is contained in:
parent
ef4d0d970d
commit
8d5c833d25
|
@ -622,7 +622,7 @@
|
|||
@ stdcall GdipVectorTransformMatrixPoints(ptr ptr long)
|
||||
@ stdcall GdipVectorTransformMatrixPointsI(ptr ptr long)
|
||||
@ stub GdipWarpPath
|
||||
@ stub GdipWidenPath
|
||||
@ stdcall GdipWidenPath(ptr ptr ptr long)
|
||||
@ stub GdipWindingModeOutline
|
||||
@ stdcall GdiplusNotificationHook(ptr)
|
||||
@ stdcall GdiplusNotificationUnhook(ptr)
|
||||
|
|
|
@ -1465,6 +1465,14 @@ GpStatus WINGDIPAPI GdipTransformPath(GpPath *path, GpMatrix *matrix)
|
|||
path->pathdata.Count);
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipWidenPath(GpPath *path, GpPen *pen, GpMatrix *matrix,
|
||||
REAL flatness)
|
||||
{
|
||||
FIXME("(%p,%p,%p,%0.2f)\n", path, pen, matrix, flatness);
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipAddPathRectangle(GpPath *path, REAL x, REAL y,
|
||||
REAL width, REAL height)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue