Wells

Results 2 issues of Wells

- add 'utf8_to_gb' func into commands.cpp ``` static std::string utf8_to_gb(const char* str) { std::string result; WCHAR* strSrc; LPSTR szRes; int i = MultiByteToWideChar(CP_UTF8, 0, str, -1, NULL, 0); strSrc =...