Added stubbed support for ScriptGetFontProperties.
diff --git a/dlls/usp10/usp10.c b/dlls/usp10/usp10.c index 096f626..752951e 100644 --- a/dlls/usp10/usp10.c +++ b/dlls/usp10/usp10.c
@@ -51,6 +51,21 @@ return E_NOTIMPL; } +HRESULT WINAPI ScriptGetFontProperties(HDC hdc, SCRIPT_CACHE *psc, SCRIPT_FONTPROPERTIES *sfp) +{ + FIXME("%p,%p,%p\n", hdc, psc, sfp); + /* return something sensible? */ + if (NULL != sfp) { + sfp->cBytes = sizeof(SCRIPT_FONTPROPERTIES); + sfp->wgBlank = 0; + sfp->wgDefault = 0; + sfp->wgInvalid = 0; + sfp->wgKashida = 1; + sfp->iKashidaWidth = 0; + } + return 0; +} + HRESULT WINAPI ScriptRecordDigitSubstitution(LCID Locale,SCRIPT_DIGITSUBSTITUTE *psds) { FIXME("%ld,%p\n",Locale,psds);