gdi32: Add stub for GetFontResourceInfoW.
This commit is contained in:
parent
77337d75f2
commit
83846cd131
|
@ -3601,6 +3601,15 @@ BOOL WINAPI RemoveFontResourceExW( LPCWSTR str, DWORD fl, PVOID pdv )
|
|||
return ret;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetFontResourceInfoW (GDI32.@)
|
||||
*/
|
||||
BOOL WINAPI GetFontResourceInfoW( LPCWSTR str, LPDWORD size, PVOID buffer, DWORD type )
|
||||
{
|
||||
FIXME("%s %p(%d) %p %d\n", debugstr_w(str), size, size ? *size : 0, buffer, type);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetTextCharset (GDI32.@)
|
||||
*/
|
||||
|
|
|
@ -279,7 +279,7 @@
|
|||
@ stdcall GetFontData(long long long ptr long)
|
||||
@ stdcall GetFontLanguageInfo(long)
|
||||
@ stub GetFontResourceInfo
|
||||
@ stub GetFontResourceInfoW
|
||||
@ stdcall GetFontResourceInfoW(wstr ptr ptr long)
|
||||
@ stdcall GetFontUnicodeRanges(ptr ptr)
|
||||
@ stdcall GetGlyphIndicesA(long ptr long ptr long)
|
||||
@ stdcall GetGlyphIndicesW(long ptr long ptr long)
|
||||
|
|
Loading…
Reference in New Issue