gdiplus: Stub GdipCreateTexture2I.

This commit is contained in:
Adam Petaccia 2008-08-31 01:06:54 -04:00 committed by Alexandre Julliard
parent 29e1994722
commit cb88bbd176
2 changed files with 9 additions and 1 deletions

View File

@ -511,6 +511,14 @@ GpStatus WINGDIPAPI GdipCreateTextureIAI(GpImage *image, GDIPCONST GpImageAttrib
return GdipCreateTextureIA(image,imageattr,(REAL)x,(REAL)y,(REAL)width,(REAL)height,texture);
}
GpStatus WINGDIPAPI GdipCreateTexture2I(GpImage *image, GpWrapMode wrapmode,
INT x, INT y, INT width, INT height, GpTexture **texture)
{
FIXME("stub: %p %d %d %d %d %d %p", image, wrapmode, x, y, width, height, texture);
return NotImplemented;
}
GpStatus WINGDIPAPI GdipGetBrushType(GpBrush *brush, GpBrushType *type)
{
if(!brush || !type) return InvalidParameter;

View File

@ -132,7 +132,7 @@
@ stdcall GdipCreateStreamOnFile(ptr long ptr)
@ stdcall GdipCreateStringFormat(long long ptr)
@ stdcall GdipCreateTexture2(ptr long long long long long ptr)
@ stub GdipCreateTexture2I
@ stdcall GdipCreateTexture2I(ptr long long long long long ptr)
@ stdcall GdipCreateTexture(ptr long ptr)
@ stdcall GdipCreateTextureIA(ptr ptr long long long long ptr)
@ stdcall GdipCreateTextureIAI(ptr ptr long long long long ptr)