Commit 864741c1 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

gdi32: Add a stub implementation for RemoveFontMemResourceEx.

parent 739152ce
......@@ -3308,6 +3308,15 @@ HANDLE WINAPI AddFontMemResourceEx( PVOID pbFont, DWORD cbFont, PVOID pdv, DWORD
}
/***********************************************************************
* RemoveFontMemResourceEx (GDI32.@)
*/
BOOL WINAPI RemoveFontMemResourceEx( HANDLE fh )
{
FIXME("(%p) stub\n", fh);
return TRUE;
}
/***********************************************************************
* RemoveFontResourceExA (GDI32.@)
*/
BOOL WINAPI RemoveFontResourceExA( LPCSTR str, DWORD fl, PVOID pdv )
......
......@@ -397,7 +397,7 @@
@ stdcall RectInRegion(long ptr)
@ stdcall RectVisible(long ptr)
@ stdcall Rectangle(long long long long long)
# @ stub RemoveFontMemResourceEx
@ stdcall RemoveFontMemResourceEx(ptr)
@ stdcall RemoveFontResourceA(str)
@ stdcall RemoveFontResourceExA(str long ptr)
@ stdcall RemoveFontResourceExW(wstr long ptr)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment