gdiplus: Added GdipIsOutlineVisiblePathPointI stub.

This commit is contained in:
Evan Stade 2007-08-01 17:55:38 -07:00 committed by Alexandre Julliard
parent 192e1115bd
commit fdf9f8fb05
3 changed files with 17 additions and 1 deletions

View File

@ -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

View File

@ -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)

View File

@ -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);