Commit 9acfd6be authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

usp10: Added stub for ScriptGetCMap.

parent 29ff53c1
......@@ -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
......
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