| 16 | } |
| 17 | |
| 18 | wchar_t LocalizeCharacter(char character) |
| 19 | { |
| 20 | wchar_t result; |
| 21 | UINT codepage = GetCurentCodepage(); |
| 22 | MultiByteToWideChar(codepage, MB_USEGLYPHCHARS, &character, 1, &result, 1); |
| 23 | return result; |
| 24 | } |
| 25 | |
| 26 | DEFINE_HOOK(0x5D46C7, MessageListClass_Input, 0x5) |
| 27 | { |
no test coverage detected