gdi32: Add a stub implementation for RemoveFontMemResourceEx.
This commit is contained in:
parent
739152ce3e
commit
864741c1b4
|
@ -3307,6 +3307,15 @@ HANDLE WINAPI AddFontMemResourceEx( PVOID pbFont, DWORD cbFont, PVOID pdv, DWORD
|
||||||
return WineEngAddFontMemResourceEx(pbFont, cbFont, pdv, pcFonts);
|
return WineEngAddFontMemResourceEx(pbFont, cbFont, pdv, pcFonts);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* RemoveFontMemResourceEx (GDI32.@)
|
||||||
|
*/
|
||||||
|
BOOL WINAPI RemoveFontMemResourceEx( HANDLE fh )
|
||||||
|
{
|
||||||
|
FIXME("(%p) stub\n", fh);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* RemoveFontResourceExA (GDI32.@)
|
* RemoveFontResourceExA (GDI32.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -397,7 +397,7 @@
|
||||||
@ stdcall RectInRegion(long ptr)
|
@ stdcall RectInRegion(long ptr)
|
||||||
@ stdcall RectVisible(long ptr)
|
@ stdcall RectVisible(long ptr)
|
||||||
@ stdcall Rectangle(long long long long long)
|
@ stdcall Rectangle(long long long long long)
|
||||||
# @ stub RemoveFontMemResourceEx
|
@ stdcall RemoveFontMemResourceEx(ptr)
|
||||||
@ stdcall RemoveFontResourceA(str)
|
@ stdcall RemoveFontResourceA(str)
|
||||||
@ stdcall RemoveFontResourceExA(str long ptr)
|
@ stdcall RemoveFontResourceExA(str long ptr)
|
||||||
@ stdcall RemoveFontResourceExW(wstr long ptr)
|
@ stdcall RemoveFontResourceExW(wstr long ptr)
|
||||||
|
|
Loading…
Reference in New Issue