gdiplus: Added GdipIsOutlineVisiblePathPointI stub.
This commit is contained in:
parent
192e1115bd
commit
fdf9f8fb05
|
@ -422,7 +422,7 @@
|
||||||
@ stub GdipIsMatrixIdentity
|
@ stub GdipIsMatrixIdentity
|
||||||
@ stub GdipIsMatrixInvertible
|
@ stub GdipIsMatrixInvertible
|
||||||
@ stub GdipIsOutlineVisiblePathPoint
|
@ stub GdipIsOutlineVisiblePathPoint
|
||||||
@ stub GdipIsOutlineVisiblePathPointI
|
@ stdcall GdipIsOutlineVisiblePathPointI(ptr long long ptr ptr ptr)
|
||||||
@ stub GdipIsStyleAvailable
|
@ stub GdipIsStyleAvailable
|
||||||
@ stub GdipIsVisibleClipEmpty
|
@ stub GdipIsVisibleClipEmpty
|
||||||
@ stub GdipIsVisiblePathPoint
|
@ stub GdipIsVisiblePathPoint
|
||||||
|
|
|
@ -399,6 +399,20 @@ GpStatus WINGDIPAPI GdipGetPointCount(GpPath *path, INT *count)
|
||||||
return Ok;
|
return Ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GpStatus WINGDIPAPI GdipIsOutlineVisiblePathPointI(GpPath* path, INT x, INT y,
|
||||||
|
GpPen *pen, GpGraphics *graphics, BOOL *result)
|
||||||
|
{
|
||||||
|
static int calls;
|
||||||
|
|
||||||
|
if(!path || !pen)
|
||||||
|
return InvalidParameter;
|
||||||
|
|
||||||
|
if(!(calls++))
|
||||||
|
FIXME("not implemented\n");
|
||||||
|
|
||||||
|
return NotImplemented;
|
||||||
|
}
|
||||||
|
|
||||||
GpStatus WINGDIPAPI GdipStartPathFigure(GpPath *path)
|
GpStatus WINGDIPAPI GdipStartPathFigure(GpPath *path)
|
||||||
{
|
{
|
||||||
if(!path)
|
if(!path)
|
||||||
|
|
|
@ -107,6 +107,8 @@ GpStatus WINGDIPAPI GdipGetPathTypes(GpPath*,BYTE*,INT);
|
||||||
GpStatus WINGDIPAPI GdipGetPathWorldBounds(GpPath*,GpRectF*,GDIPCONST GpMatrix*,
|
GpStatus WINGDIPAPI GdipGetPathWorldBounds(GpPath*,GpRectF*,GDIPCONST GpMatrix*,
|
||||||
GDIPCONST GpPen*);
|
GDIPCONST GpPen*);
|
||||||
GpStatus WINGDIPAPI GdipGetPointCount(GpPath*,INT*);
|
GpStatus WINGDIPAPI GdipGetPointCount(GpPath*,INT*);
|
||||||
|
GpStatus WINGDIPAPI GdipIsOutlineVisiblePathPointI(GpPath*,INT,INT,GpPen*,
|
||||||
|
GpGraphics*,BOOL*);
|
||||||
GpStatus WINGDIPAPI GdipStartPathFigure(GpPath*);
|
GpStatus WINGDIPAPI GdipStartPathFigure(GpPath*);
|
||||||
GpStatus WINGDIPAPI GdipResetPath(GpPath*);
|
GpStatus WINGDIPAPI GdipResetPath(GpPath*);
|
||||||
GpStatus WINGDIPAPI GdipSetPathFillMode(GpPath*,GpFillMode);
|
GpStatus WINGDIPAPI GdipSetPathFillMode(GpPath*,GpFillMode);
|
||||||
|
|
Loading…
Reference in New Issue