| 685 | } |
| 686 | |
| 687 | std::string MMKVPath_t2String(const MMKVPath_t &str) { |
| 688 | auto length = WideCharToMultiByte(CP_UTF8, 0, str.c_str(), -1, nullptr, 0, 0, 0); |
| 689 | auto buffer = new char[length]; |
| 690 | WideCharToMultiByte(CP_UTF8, 0, str.c_str(), -1, buffer, length, 0, 0); |
| 691 | string result(buffer); |
| 692 | delete[] buffer; |
| 693 | return result; |
| 694 | } |
| 695 | |
| 696 | #endif // MMKV_WIN32 |
no outgoing calls
no test coverage detected