Converts a string of 8-bit Latin-1 characters into UTF-8 format
@deprecated Use CNV_UTF8BytesFromLatin1() instead.
Public Declare Function CNV_UTF8FromLatin1 Lib "diCrPKI.dll"
(ByVal strOutput As String, ByVal nOutChars As Long, ByVal strInput As String) As Long
nLen = CNV_UTF8FromLatin1(strOutput, nOutChars, strInput)
long __stdcall CNV_UTF8FromLatin1(char *szOutput, long nOutChars, const char *szInput);
If successful, the return value is a positive number indicating the number of (single-byte) characters in the output string, or number of characters required if nOutChars is set to zero; otherwise it returns a negative error code.
Not applicable in .NET.