Checks if a string only contains valid UTF-8 characters.
@deprecated
Use CNV_CheckUTF8Bytes()
instead.
Public Declare Function CNV_CheckUTF8 Lib "diCrPKI.dll"
(ByVal strInput As String) As Long
nLen = CNV_CheckUTF8(strInput)
long __stdcall CNV_CheckUTF8(const char *szInput);
Returns zero if the string is invalid UTF-8, or a positive number if the string is valid UTF-8.
Not applicable in .NET.
static int dipki::Cnv::CheckUTF8 (const bvec_t &bv)