Using ScriptGetProperties with Delphi
- by Mohammed Nasman
How can I use ScriptGetProperties API from Uniscribe Dll (usp10.dll) in Delphi
I found an example in C++, but I don't know how to translate it, because I'm not good on C.
const SCRIPT_PROPERTIES **g_ppScriptProperties;
int g_iMaxScript;
WCHAR *pwcInChars = L"Unicode string to itemize";
int cInChars = wcslen(pwcInChars);
const int cMaxItems = 20;…