mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 21:20:25 +00:00
usp10: Add a stub implementation of ScriptStringValidate.
This commit is contained in:
parent
e119a04a26
commit
539a96240a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user