mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:15:41 +00:00
[IMM32_APITEST] himc: Show class on CreateWindow failure (#4466)
Display the window class name on failure of CreateWindow function call. CORE-11700
This commit is contained in:
parent
8f719cb97e
commit
e9df3176f7
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ static void Test2(void)
|
|||
LPCSTR pszClass = apszClasses[i];
|
||||
hwnd = CreateWindowA(pszClass, NULL, WS_VISIBLE, 0, 0, 0, 0, NULL, NULL,
|
||||
GetModuleHandle(NULL), NULL);
|
||||
ok(hwnd != NULL, "CreateWindow failed\n");
|
||||
ok(hwnd != NULL, "CreateWindow(%s) failed\n", pszClass);
|
||||
|
||||
hIMC = ImmGetContext(hwnd);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue