Home
last modified time | relevance | path

Searched refs:zWideText (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3.c48922 LPWSTR zWideText; in winUtf8ToUnicode() local
48928 zWideText = sqlite3MallocZero( nChar*sizeof(WCHAR) ); in winUtf8ToUnicode()
48929 if( zWideText==0 ){ in winUtf8ToUnicode()
48932 nChar = osMultiByteToWideChar(CP_UTF8, 0, zText, -1, zWideText, in winUtf8ToUnicode()
48935 sqlite3_free(zWideText); in winUtf8ToUnicode()
48936 zWideText = 0; in winUtf8ToUnicode()
48938 return zWideText; in winUtf8ToUnicode()
48947 static char *winUnicodeToUtf8(LPCWSTR zWideText){ in winUnicodeToUtf8() argument
48951 nByte = osWideCharToMultiByte(CP_UTF8, 0, zWideText, -1, 0, 0, 0, 0); in winUnicodeToUtf8()
48959 nByte = osWideCharToMultiByte(CP_UTF8, 0, zWideText, -1, zText, nByte, in winUnicodeToUtf8()
[all …]