| 55 | } |
| 56 | |
| 57 | static bool CodePageToWide(UINT code_page, const char* src, wchar_t* dst, int dst_len) |
| 58 | { |
| 59 | return MultiByteToWideChar(code_page, 0, src, -1, dst, dst_len) > 0; |
| 60 | } |
| 61 | |
| 62 | static bool FindAnsiRoundtripSample(wchar_t* sample, uint32_t sample_len) |
| 63 | { |
no outgoing calls
no test coverage detected