gdiplus: Add a stub for GdipSetImageAttributesCachedBackground.

This commit is contained in:
Lei Zhang 2008-04-09 13:09:58 -07:00 committed by Alexandre Julliard
parent 5d7e2254f6
commit 2b2db98cb6
2 changed files with 12 additions and 1 deletions

View File

@ -521,7 +521,7 @@
@ stdcall GdipSetCustomLineCapWidthScale(ptr long)
@ stdcall GdipSetEffectParameters(ptr ptr long)
@ stdcall GdipSetEmpty(ptr)
@ stub GdipSetImageAttributesCachedBackground
@ stdcall GdipSetImageAttributesCachedBackground(ptr long)
@ stdcall GdipSetImageAttributesColorKeys(ptr long long long long)
@ stdcall GdipSetImageAttributesColorMatrix(ptr long long ptr ptr long)
@ stub GdipSetImageAttributesGamma

View File

@ -90,3 +90,14 @@ GpStatus WINGDIPAPI GdipSetImageAttributesWrapMode(GpImageAttributes *imageAttr,
return NotImplemented;
}
GpStatus WINGDIPAPI GdipSetImageAttributesCachedBackground(GpImageAttributes *imageAttr,
BOOL enableFlag)
{
static int calls;
if(!(calls++))
FIXME("not implemented\n");
return NotImplemented;
}