Module: wine Branch: master Commit: dfcc45cc173f9fe5a25055790660d6378cd444f8 URL: https://gitlab.winehq.org/wine/wine/-/commit/dfcc45cc173f9fe5a25055790660d63...
Author: Francois Gouget fgouget@codeweavers.com Date: Wed Feb 15 03:59:42 2023 +0100
winetest: Trace the keyboard layout.
It is important for the input tests so add it to the global locale information.
---
programs/winetest/main.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/programs/winetest/main.c b/programs/winetest/main.c index 18fa25db101..a939034e8b9 100644 --- a/programs/winetest/main.c +++ b/programs/winetest/main.c @@ -583,6 +583,7 @@ static void print_language(void) xprintf (" UserDefaultUILanguage=%04x\n", pGetUserDefaultUILanguage()); if (pGetThreadUILanguage) xprintf (" ThreadUILanguage=%04x\n", pGetThreadUILanguage()); + xprintf (" KeyboardLayout=%p\n", GetKeyboardLayout(0)); xprintf (" Country=%d\n", GetUserGeoID(GEOCLASS_NATION)); xprintf (" ACP=%d\n", GetACP()); }