msvcrt: Add support for demangling char{8,16,32}_t types.

Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Piotr Caban 2022-01-19 16:20:09 +01:00 committed by Alexandre Julliard
parent 0054435178
commit 64c6deda5d
1 changed files with 3 additions and 0 deletions

View File

@ -772,6 +772,9 @@ static const char* get_extended_type(char c)
case 'L': type_string = "__int128"; break;
case 'M': type_string = "unsigned __int128"; break;
case 'N': type_string = "bool"; break;
case 'Q': type_string = "char8_t"; break;
case 'S': type_string = "char16_t"; break;
case 'U': type_string = "char32_t"; break;
case 'W': type_string = "wchar_t"; break;
default: type_string = NULL; break;
}