C++ sqlite数据库中文路径编码函数
时间:2021-07-01 10:21:17
帮助过:7人阅读
* UnicodeToUtf8(
const wchar_t*
unicode)
{
int len;
len = WideCharToMultiByte(CP_UTF8,
0, unicode, -
1, NULL,
0, NULL, NULL);
char *szUtf8 = (
char*)
malloc(len +
1);
memset(szUtf8, 0, len +
1);
WideCharToMultiByte(CP_UTF8, 0, unicode, -
1, szUtf8, len, NULL, NULL);
return szUtf8;
}
C++ sqlite数据库中文路径编码函数
标签:color sqlite sqli ems turn ons 函数 pre span