gdiplus: Stub GdipCreateHICONFromBitmap.
This commit is contained in:
parent
f77489acd5
commit
8219db2d6d
|
@ -94,7 +94,7 @@
|
|||
@ stdcall GdipCreateFromHWND(long ptr)
|
||||
@ stdcall GdipCreateFromHWNDICM(long ptr)
|
||||
@ stdcall GdipCreateHBITMAPFromBitmap(ptr ptr long)
|
||||
@ stub GdipCreateHICONFromBitmap
|
||||
@ stdcall GdipCreateHICONFromBitmap(ptr ptr)
|
||||
@ stdcall GdipCreateHalftonePalette()
|
||||
@ stdcall GdipCreateHatchBrush(long long long ptr)
|
||||
@ stdcall GdipCreateImageAttributes(ptr)
|
||||
|
|
|
@ -655,6 +655,13 @@ GpStatus WINGDIPAPI GdipCreateCachedBitmap(GpBitmap *bitmap, GpGraphics *graphic
|
|||
return Ok;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipCreateHICONFromBitmap(GpBitmap *bitmap, HICON *hicon)
|
||||
{
|
||||
FIXME("(%p, %p)\n", bitmap, hicon);
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
GpStatus WINGDIPAPI GdipDeleteCachedBitmap(GpCachedBitmap *cachedbmp)
|
||||
{
|
||||
TRACE("%p\n", cachedbmp);
|
||||
|
|
Loading…
Reference in New Issue