gdi: Added stub for AddFontMemResourceEx.

This commit is contained in:
Louis Lenders 2005-12-06 11:32:41 +01:00 committed by Alexandre Julliard
parent 9f55a518a2
commit ca1c26b9d3
2 changed files with 10 additions and 1 deletions

View file

@ -2882,6 +2882,15 @@ BOOL WINAPI RemoveFontResourceW( LPCWSTR str )
return RemoveFontResourceExW(str, 0, 0);
}
/***********************************************************************
* AddFontMemResourceEx (GDI32.@)
*/
HANDLE WINAPI AddFontMemResourceEx( PVOID pbFont, DWORD cbFont, PVOID pdv, DWORD *pcFonts)
{
FIXME("(%p,%08lx,%p,%p): stub\n", pbFont, cbFont, pdv, pcFonts);
return NULL;
}
/***********************************************************************
* RemoveFontResourceExA (GDI32.@)
*/

View file

@ -7,7 +7,7 @@
@ stdcall AbortDoc(long)
@ stdcall AbortPath(long)
# @ stub AddFontMemResourceEx
@ stdcall AddFontMemResourceEx(ptr long ptr ptr)
@ stdcall AddFontResourceA(str)
@ stdcall AddFontResourceExA(str long ptr)
@ stdcall AddFontResourceExW(wstr long ptr)