Converts a UTF-8 string into a Latin-1 string, if possible.
@deprecated Use CNV_Latin1FromUTF8Bytes() instead.
Public Declare Function CNV_Latin1FromUTF8 Lib "diCrPKI.dll"
(ByVal strOutput As String, ByVal nOutChars As Long, ByVal strInput As String) As Long
nLen = CNV_Latin1FromUTF8(strOutput, nOutChars, strInput)
long __stdcall CNV_Latin1FromUTF8(char *szOutput, long nOutChars, const char *szInput);
If successful, the return value is a positive number indicating the number of 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.