By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!void WINAPI UnicodeToUTF8( LPCWSTR pszUnicode, char * pszUTF8, int nLength );
/*
Convert a Unicode string to UTF8
nLength = maximum length of pszASCII
*/
void WINAPI UTF8ToUnicode( const char * pszUTF8, LPWSTR pszUnicode, int nLength );
/*
Convert a UTF8 string to Unicode
nLength = maximum length of pszUnicode
*/