gdiplus: Add a stub for GdipSetInfinite.

This commit is contained in:
Lei Zhang 2008-04-10 12:40:16 -07:00 committed by Alexandre Julliard
parent 6a44f19179
commit 0fe2f5b677
2 changed files with 11 additions and 1 deletions

View File

@ -533,7 +533,7 @@
@ stdcall GdipSetImageAttributesToIdentity(ptr long)
@ stdcall GdipSetImageAttributesWrapMode(ptr long long long)
@ stdcall GdipSetImagePalette(ptr ptr)
@ stub GdipSetInfinite
@ stdcall GdipSetInfinite(ptr)
@ stdcall GdipSetInterpolationMode(ptr long)
@ stdcall GdipSetLineBlend(ptr ptr ptr long)
@ stub GdipSetLineColors

View File

@ -39,3 +39,13 @@ GpStatus WINGDIPAPI GdipSetEmpty(GpRegion *region)
return NotImplemented;
}
GpStatus WINGDIPAPI GdipSetInfinite(GpRegion *region)
{
static int calls;
if(!(calls++))
FIXME("not implemented\n");
return NotImplemented;
}