| 73 | } |
| 74 | |
| 75 | string WStringToString(UINT codePage, const wstring& ws) |
| 76 | { |
| 77 | if (ws.empty()) |
| 78 | return string(); |
| 79 | // get a converted string length |
| 80 | int len = WideCharToMultiByte(codePage, 0, ws.c_str(), ws.length(), NULL, 0, NULL, NULL); |
| 81 | string out(len, 0); |
| 82 | WideCharToMultiByte(codePage, 0, ws.c_str(), ws.length(), &out[0], len, NULL, NULL); |
| 83 | return out; |
| 84 | } |
| 85 | |
| 86 | wstring StringToWString(UINT codePage, const string& s) |
| 87 | { |
no test coverage detected