usp10: Added stub for ScriptGetCMap.
This commit is contained in:
parent
29ff53c119
commit
9acfd6beb6
|
@ -212,3 +212,14 @@ HRESULT WINAPI ScriptPlace(HDC hdc, SCRIPT_CACHE *psc, const WORD *pwGlyphs,
|
|||
return E_NOTIMPL;
|
||||
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* ScriptGetCMap (USP10.@)
|
||||
*
|
||||
*/
|
||||
HRESULT WINAPI ScriptGetCMap(HDC hdc, SCRIPT_CACHE *psc, const WCHAR *pwcInChars,
|
||||
int cChars, DWORD dwFlags, WORD *pwOutGlyphs)
|
||||
{
|
||||
FIXME("(%p,%p,%s,%d,0x%lx,%p): stub\n", hdc, psc, debugstr_w(pwcInChars), cChars, dwFlags, pwOutGlyphs);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
@ stub ScriptCPtoX
|
||||
@ stub ScriptCacheGetHeight
|
||||
@ stdcall ScriptFreeCache(ptr)
|
||||
@ stub ScriptGetCMap
|
||||
@ stdcall ScriptGetCMap(ptr ptr ptr long long ptr)
|
||||
@ stdcall ScriptGetFontProperties(long ptr ptr)
|
||||
@ stub ScriptGetGlyphABCWidth
|
||||
@ stub ScriptGetLogicalWidths
|
||||
|
|
Loading…
Reference in New Issue