Commit 539a9624 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

usp10: Add a stub implementation of ScriptStringValidate.

parent e119a04a
......@@ -1171,3 +1171,22 @@ HRESULT WINAPI ScriptLayout(int runs, const BYTE *level, int *vistolog, int *log
}
return S_OK;
}
/***********************************************************************
* ScriptStringValidate (USP10.@)
*
* Validate a string analysis.
*
* PARAMS
* ssa [I] string analysis.
*
* RETURNS
* Success: S_OK
* Failure: S_FALSE if invalid sequences are found
* or a non-zero HRESULT if it fails.
*/
HRESULT WINAPI ScriptStringValidate(SCRIPT_STRING_ANALYSIS ssa)
{
FIXME("(%p): stub\n", ssa);
return S_OK;
}
......@@ -23,7 +23,7 @@
@ stub ScriptStringGetLogicalWidths
@ stub ScriptStringGetOrder
@ stdcall ScriptStringOut(ptr long long long ptr long long long)
@ stub ScriptStringValidate
@ stdcall ScriptStringValidate(ptr)
@ stdcall ScriptStringXtoCP(ptr long ptr ptr)
@ stub ScriptString_pLogAttr
@ stub ScriptString_pSize
......
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