mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
gdiplus: Added GdipDisposeImage stub.
This commit is contained in:
parent
021997fa63
commit
fba5a59b61
3 changed files with 15 additions and 1 deletions
|
@ -140,7 +140,7 @@
|
|||
@ stub GdipDeletePrivateFontCollection
|
||||
@ stub GdipDeleteRegion
|
||||
@ stub GdipDeleteStringFormat
|
||||
@ stub GdipDisposeImage
|
||||
@ stdcall GdipDisposeImage(ptr)
|
||||
@ stub GdipDisposeImageAttributes
|
||||
@ stdcall GdipDrawArc(ptr ptr long long long long long long)
|
||||
@ stub GdipDrawArcI
|
||||
|
|
|
@ -24,6 +24,19 @@
|
|||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
|
||||
|
||||
GpStatus WINGDIPAPI GdipDisposeImage(GpImage *image)
|
||||
{
|
||||
static int calls;
|
||||
|
||||
if(!image)
|
||||
return InvalidParameter;
|
||||
|
||||
if(!(calls++))
|
||||
FIXME("not implemented\n");
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipGetImageHeight(GpImage *image, UINT *height)
|
||||
{
|
||||
static int calls;
|
||||
|
|
|
@ -128,6 +128,7 @@ GpStatus WINGDIPAPI GdipCreateCustomLineCap(GpPath*,GpPath*,GpLineCap,REAL,
|
|||
GpCustomLineCap**);
|
||||
GpStatus WINGDIPAPI GdipDeleteCustomLineCap(GpCustomLineCap*);
|
||||
|
||||
GpStatus WINGDIPAPI GdipDisposeImage(GpImage*);
|
||||
GpStatus WINGDIPAPI GdipGetImageHeight(GpImage*,UINT*);
|
||||
GpStatus WINGDIPAPI GdipGetImageHorizontalResolution(GpImage*,REAL*);
|
||||
GpStatus WINGDIPAPI GdipGetImageRawFormat(GpImage*,GUID*);
|
||||
|
|
Loading…
Reference in a new issue