Searched refs:zWideText (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3.c | 50404 LPWSTR zWideText; in winUtf8ToUnicode() local 50410 zWideText = sqlite3MallocZero( nChar*sizeof(WCHAR) ); in winUtf8ToUnicode() 50411 if( zWideText==0 ){ in winUtf8ToUnicode() 50414 nChar = osMultiByteToWideChar(CP_UTF8, 0, zText, -1, zWideText, in winUtf8ToUnicode() 50417 sqlite3_free(zWideText); in winUtf8ToUnicode() 50418 zWideText = 0; in winUtf8ToUnicode() 50420 return zWideText; in winUtf8ToUnicode() 50429 static char *winUnicodeToUtf8(LPCWSTR zWideText){ in winUnicodeToUtf8() argument 50433 nByte = osWideCharToMultiByte(CP_UTF8, 0, zWideText, -1, 0, 0, 0, 0); in winUnicodeToUtf8() 50441 nByte = osWideCharToMultiByte(CP_UTF8, 0, zWideText, -1, zText, nByte, in winUnicodeToUtf8() [all …]
|