usp10: Add stub for ScriptTextOut.
This commit is contained in:
parent
a05e712cb8
commit
044a6f81b3
|
@ -439,3 +439,19 @@ HRESULT WINAPI ScriptGetCMap(HDC hdc, SCRIPT_CACHE *psc, const WCHAR *pwcInChars
|
||||||
FIXME("(%p,%p,%s,%d,0x%lx,%p): stub\n", hdc, psc, debugstr_w(pwcInChars), cChars, dwFlags, pwOutGlyphs);
|
FIXME("(%p,%p,%s,%d,0x%lx,%p): stub\n", hdc, psc, debugstr_w(pwcInChars), cChars, dwFlags, pwOutGlyphs);
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* ScriptTextOut (USP10.@)
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
HRESULT WINAPI ScriptTextOut(const HDC hdc, SCRIPT_CACHE *psc, int x, int y, UINT fuOptions,
|
||||||
|
const RECT *lprc, const SCRIPT_ANALYSIS *psa, const WCHAR *pwcReserved,
|
||||||
|
int iReserved, const WORD *pwGlyphs, int cGlyphs, const int *piAdvance,
|
||||||
|
const int *piJustify, const GOFFSET *pGoffset)
|
||||||
|
{
|
||||||
|
FIXME("(%p, %p, %d, %d, %04x, %p, %p, %p, %d, %p, %d, %p, %p, %p): stub\n",
|
||||||
|
hdc, psc, x, y, fuOptions, lprc, psa, pwcReserved, iReserved, pwGlyphs, cGlyphs,
|
||||||
|
piAdvance, piJustify, pGoffset);
|
||||||
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
@ stub ScriptString_pLogAttr
|
@ stub ScriptString_pLogAttr
|
||||||
@ stub ScriptString_pSize
|
@ stub ScriptString_pSize
|
||||||
@ stub ScriptString_pcOutChars
|
@ stub ScriptString_pcOutChars
|
||||||
@ stub ScriptTextOut
|
@ stdcall ScriptTextOut(ptr ptr long long long ptr ptr ptr long ptr long ptr ptr ptr)
|
||||||
@ stub ScriptXtoCP
|
@ stub ScriptXtoCP
|
||||||
@ stub UspAllocCache
|
@ stub UspAllocCache
|
||||||
@ stub UspAllocTemp
|
@ stub UspAllocTemp
|
||||||
|
|
Loading…
Reference in New Issue