usp10: Add stub for ScriptGetFontAlternateGlyphs.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=45536 Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com> Signed-off-by: Aric Stewart <aric@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
0e17045288
commit
8257fe88fb
|
@ -4095,3 +4095,15 @@ HRESULT WINAPI ScriptGetFontFeatureTags( HDC hdc, SCRIPT_CACHE *psc, SCRIPT_ANAL
|
|||
|
||||
return SHAPE_GetFontFeatureTags(hdc, (ScriptCache *)*psc, psa, tagScript, tagLangSys, cMaxTags, pFeatureTags, pcTags);
|
||||
}
|
||||
|
||||
HRESULT WINAPI ScriptGetFontAlternateGlyphs( HDC hdc, SCRIPT_CACHE *sc, SCRIPT_ANALYSIS *sa, OPENTYPE_TAG tag_script, OPENTYPE_TAG tag_langsys, OPENTYPE_TAG tag_feature,
|
||||
WORD id, int size, WORD *list, int *count )
|
||||
{
|
||||
FIXME("(%p, %p, %p, %s, %s, %s, 0x%04x, %d, %p, %p)\n", hdc, sc, sa, debugstr_an((char*)&tag_script,4), debugstr_an((char*)&tag_langsys,4),
|
||||
debugstr_an((char*)&tag_feature,4), id, size, list, count);
|
||||
|
||||
if(count)
|
||||
*count = 0;
|
||||
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
@ stdcall ScriptCacheGetHeight(ptr ptr ptr)
|
||||
@ stdcall ScriptFreeCache(ptr)
|
||||
@ stdcall ScriptGetCMap(ptr ptr ptr long long ptr)
|
||||
@ stub ScriptGetFontAlternateGlyphs
|
||||
@ stdcall ScriptGetFontAlternateGlyphs(long ptr ptr long long long long long ptr ptr)
|
||||
@ stdcall ScriptGetFontFeatureTags(long ptr ptr long long long ptr ptr)
|
||||
@ stdcall ScriptGetFontLanguageTags(long ptr ptr long long ptr ptr)
|
||||
@ stdcall ScriptGetFontProperties(long ptr ptr)
|
||||
|
|
Loading…
Reference in New Issue