winetest: Also trace the country and ANSI code page.

Tracing the ANSI code page is useful to identify tests run in
Windows' UTF-8 mode.

Signed-off-by: Francois Gouget <fgouget@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2022-02-18 15:19:55 +01:00 committed by Alexandre Julliard
parent b2e4ce14c0
commit bf42dca35f
1 changed files with 2 additions and 0 deletions

View File

@ -477,6 +477,8 @@ static void print_language(void)
xprintf (" UserDefaultUILanguage=%04x\n", pGetUserDefaultUILanguage());
if (pGetThreadUILanguage)
xprintf (" ThreadUILanguage=%04x\n", pGetThreadUILanguage());
xprintf (" Country=%d\n", GetUserGeoID(GEOCLASS_NATION));
xprintf (" ACP=%d\n", GetACP());
}
static inline BOOL is_dot_dir(const char* x)