gdiplus: Add a stub for GdipWindingModeOutline.
This commit is contained in:
parent
d68c0d1dd5
commit
5435fbba55
|
@ -623,7 +623,7 @@
|
|||
@ stdcall GdipVectorTransformMatrixPointsI(ptr ptr long)
|
||||
@ stdcall GdipWarpPath(ptr ptr ptr long long long long long long long)
|
||||
@ stdcall GdipWidenPath(ptr ptr ptr long)
|
||||
@ stub GdipWindingModeOutline
|
||||
@ stdcall GdipWindingModeOutline(ptr ptr long)
|
||||
@ stdcall GdiplusNotificationHook(ptr)
|
||||
@ stdcall GdiplusNotificationUnhook(ptr)
|
||||
@ stdcall GdiplusShutdown(ptr)
|
||||
|
|
|
@ -1653,3 +1653,9 @@ GpStatus WINGDIPAPI GdipClearPathMarkers(GpPath* path)
|
|||
|
||||
return Ok;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipWindingModeOutline(GpPath *path, GpMatrix *matrix, REAL flatness)
|
||||
{
|
||||
FIXME("stub: %p, %p, %.2f\n", path, matrix, flatness);
|
||||
return NotImplemented;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue