Searched refs:zWideText (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3.c | 50432 LPWSTR zWideText; in winUtf8ToUnicode() local 50438 zWideText = sqlite3MallocZero( nChar*sizeof(WCHAR) ); in winUtf8ToUnicode() 50439 if( zWideText==0 ){ in winUtf8ToUnicode() 50442 nChar = osMultiByteToWideChar(CP_UTF8, 0, zText, -1, zWideText, in winUtf8ToUnicode() 50445 sqlite3_free(zWideText); in winUtf8ToUnicode() 50446 zWideText = 0; in winUtf8ToUnicode() 50448 return zWideText; in winUtf8ToUnicode() 50457 static char *winUnicodeToUtf8(LPCWSTR zWideText){ in winUnicodeToUtf8() argument 50461 nByte = osWideCharToMultiByte(CP_UTF8, 0, zWideText, -1, 0, 0, 0, 0); in winUnicodeToUtf8() 50469 nByte = osWideCharToMultiByte(CP_UTF8, 0, zWideText, -1, zText, nByte, in winUnicodeToUtf8() [all …]
|