Scroll to navigation

ScriptItemize(3w) Wine API ScriptItemize(3w)

NAME

ScriptItemize (USP10.@)

SYNOPSIS

HRESULT ScriptItemize
(
const WCHAR* pwcInChars,
int cInChars,
int cMaxItems,
const SCRIPT_CONTROL* psControl,
const SCRIPT_STATE* psState,
SCRIPT_ITEM* pItems,
int* pcItems
)
 

DESCRIPTION

Split a Unicode string into shapeable parts.
 

PARAMS

pwcInChars [In] String to split.
cInChars [In] Number of characters in pwcInChars.
cMaxItems [In] Maximum number of items to return.
psControl [In] Pointer to a SCRIPT_CONTROL structure.
psState [In] Pointer to a SCRIPT_STATE structure.
pItems [Out] Buffer to receive SCRIPT_ITEM structures.
pcItems [Out] Number of script items returned.
 

RETURNS

Success: S_OK
Failure: Non-zero HRESULT value.
 

IMPLEMENTATION

Declared in "usp10.h".
Implemented in "dlls/usp10/usp10.c".
Debug channel "uniscribe".
Oct 2012 Wine API