Earlier patch set messages within the sequence to be optional, update winevents in sequence to match this.
Signed-off-by: Connor McAdams cmcadams@codeweavers.com --- dlls/user32/tests/msg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index 9867e319d58..079d63158c8 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -16694,12 +16694,12 @@ static const struct message WmSetParentSeq_2[] = { { EVENT_OBJECT_PARENTCHANGE, winevent_hook|wparam|lparam, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_NOSIZE }, { HCBT_ACTIVATE, hook|optional }, - { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|optional, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, { WM_NCACTIVATE, sent|wparam|optional, 1 }, { WM_ACTIVATE, sent|wparam|optional, 1 }, { HCBT_SETFOCUS, hook|optional }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|optional, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|optional|defwinproc }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOREDRAW|SWP_NOSIZE|SWP_NOCLIENTSIZE }, { WM_MOVE, sent|defwinproc|wparam, 0 },
Signed-off-by: Connor McAdams cmcadams@codeweavers.com --- dlls/user32/tests/msg.c | 59 ++++++++++++++++++++++++++++++----------- 1 file changed, 43 insertions(+), 16 deletions(-)
diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index 079d63158c8..d3f5c68a608 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -137,7 +137,8 @@ typedef enum { optional=0x80, hook=0x100, winevent_hook=0x200, - kbd_hook=0x400 + kbd_hook=0x400, + winevent_hook_todo=0x800 } msg_flags_t;
struct message { @@ -2690,12 +2691,23 @@ static void ok_sequence_(const struct message *expected_list, const char *contex expected++; actual++; } - /* silently drop hook messages if there is no support for them */ + /* + * silently drop hook messages if there is no support for them, mark + * winevent todo's. + */ else if ((expected->flags & optional) || ((expected->flags & hook) && !hCBT_hook) || ((expected->flags & winevent_hook) && !hEvent_hook) || - ((expected->flags & kbd_hook) && !hKBD_hook)) + ((expected->flags & kbd_hook) && !hKBD_hook) || + ((expected->flags & winevent_hook_todo) && !strcmp(winetest_platform, "wine"))) + { + todo_wine { + ok_( file, line) (FALSE, + "%s: %u: the msg 0x%04x was expected, but got msg 0x%04x instead\n", + context, count, expected->message, actual->message); + } expected++; + } else if (todo) { failcount++; @@ -2717,11 +2729,21 @@ static void ok_sequence_(const struct message *expected_list, const char *contex count++; }
- /* skip all optional trailing messages */ + /* skip all optional trailing messages, check for winevent todo's. */ while (expected->message && ((expected->flags & optional) || ((expected->flags & hook) && !hCBT_hook) || - ((expected->flags & winevent_hook) && !hEvent_hook))) + ((expected->flags & winevent_hook) && !hEvent_hook) || + ((expected->flags & winevent_hook_todo) && !strcmp(winetest_platform, "wine")))) + { + if (expected->flags & winevent_hook_todo) + { + todo_wine { + ok_( file, line) (FALSE, "%s: %u: the msg sequence is not complete: expected 0x%04x - actual 0x%04x\n", + context, count, expected->message, actual->message); + } + } expected++; + }
if (todo) { @@ -16671,12 +16693,12 @@ static void test_WaitForInputIdle( char *argv0 )
static const struct message WmSetParentSeq_1[] = { { WM_SHOWWINDOW, sent|wparam, 0 }, - { EVENT_OBJECT_PARENTCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_PARENTCHANGE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_NOSIZE }, { WM_CHILDACTIVATE, sent }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOSIZE|SWP_NOREDRAW|SWP_NOCLIENTSIZE }, { WM_MOVE, sent|defwinproc|wparam, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { WM_SHOWWINDOW, sent|wparam, 1 }, { 0 } }; @@ -16684,14 +16706,15 @@ static const struct message WmSetParentSeq_1[] = { static const struct message WmSetParentSeq_2[] = { { WM_SHOWWINDOW, sent|wparam, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { HCBT_SETFOCUS, hook|optional }, { WM_NCACTIVATE, sent|wparam|optional, 0 }, { WM_ACTIVATE, sent|wparam|optional, 0 }, { WM_ACTIVATEAPP, sent|wparam|optional, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_hook_todo, OBJID_CLIENT, 0 }, { WM_KILLFOCUS, sent|wparam, 0 }, - { EVENT_OBJECT_PARENTCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_PARENTCHANGE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_NOSIZE }, { HCBT_ACTIVATE, hook|optional }, { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|optional, 0, 0 }, @@ -16703,10 +16726,10 @@ static const struct message WmSetParentSeq_2[] = { { WM_SETFOCUS, sent|optional|defwinproc }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOREDRAW|SWP_NOSIZE|SWP_NOCLIENTSIZE }, { WM_MOVE, sent|defwinproc|wparam, 0 }, - { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE }, - { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { 0 } }; @@ -17270,6 +17293,7 @@ end: static const struct message WmSetFocus_1[] = { { HCBT_SETFOCUS, hook }, /* child */ { HCBT_ACTIVATE, hook }, /* parent */ + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { WM_QUERYNEWPALETTE, sent|wparam|lparam|parent|optional, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|parent, 0, SWP_NOSIZE|SWP_NOMOVE }, { WM_ACTIVATEAPP, sent|wparam|parent, 1 }, @@ -17278,14 +17302,17 @@ static const struct message WmSetFocus_1[] = { { WM_GETTEXT, sent|defwinproc|parent|optional }, { WM_ACTIVATE, sent|wparam|parent, 1 }, { HCBT_SETFOCUS, hook }, /* parent */ + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_hook_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|defwinproc|parent }, { WM_KILLFOCUS, sent|parent }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_hook_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent }, { 0 } }; static const struct message WmSetFocus_2[] = { { HCBT_SETFOCUS, hook }, /* parent */ { WM_KILLFOCUS, sent }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_hook_todo, OBJID_CLIENT, 0 }, { WM_SETFOCUS, sent|parent }, { 0 } }; @@ -18283,6 +18310,11 @@ START_TEST(msg) if (!hCBT_hook) win_skip( "cannot set global hook, will skip hook tests\n" );
test_winevents(); + test_SendMessage_other_thread(1); + test_SendMessage_other_thread(2); + test_InSendMessage(); + test_SetFocus(); + test_SetParent();
/* Fix message sequences before removing 4 lines below */ if (pUnhookWinEvent && hEvent_hook) @@ -18293,11 +18325,6 @@ START_TEST(msg) } hEvent_hook = 0;
- test_SendMessage_other_thread(1); - test_SendMessage_other_thread(2); - test_InSendMessage(); - test_SetFocus(); - test_SetParent(); test_PostMessage(); test_broadcast(); test_ShowWindow();
Hi,
While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check?
Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=96317
Your paranoid android.
=== w7u_2qxl (32 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 6: the msg 0x0086 was expected, but got msg 0x0009 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 7: the msg 0x0006 was expected, but got msg 0x0009 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 8: the msg 0x001c was expected, but got msg 0x0009 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 12: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 13: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 15: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 16: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 20: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 22: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 24: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 6: the msg 0x0005 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 9: the msg 0x0046 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 10: the msg 0x001c was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 11: the msg 0x0086 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 13: the msg 0x0006 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 14: the msg 0x0009 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 18: the msg 0x0007 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 1: the msg 0x0009 was expected, but got msg 0x000d instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x000d instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 3: the msg 0x0008 was expected, but got msg 0x000d instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x000d instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x000d instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 13: the msg 0x0005 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 15: the msg 0x0046 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 16: the msg 0x001c was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 17: the msg 0x0086 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg 0x0006 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 20: the msg 0x0009 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 23: the msg 0x0007 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 31: the msg 0x0009 was expected, but got msg 0x0083 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 32: the msg 0x0007 was expected, but got msg 0x0083 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5460: Test failed: SetWindowPos:Resize: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 11: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 21: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 13: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 7: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 64: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 65: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8275: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8285: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8320: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8578: Test failed: WmParentErasePaint: 3: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 4: the msg 0x0014 was expected, but got msg 0x0085 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 5: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 2: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 5: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:9509: Test failed: Alt+VK_N press/release: 11: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 12: the msg 0x00ae was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 13: the msg 0x000d was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 15: the msg 0x0004 was expected, but got msg 0x0120 instead msg.c:9509: Test failed: Alt+VK_N press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9509: Test failed: Alt+VK_N press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9509: Test failed: Alt+VK_N press/release: 22: the msg 0x011f was expected, but got msg 0x0007 instead msg.c:9509: Test failed: Alt+VK_N press/release: 23: the msg 0x0212 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9609: Test failed: Alt press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9609: Test failed: Alt press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 15: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 16: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 19: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9629: Test failed: VK_F10 press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9629: Test failed: VK_F10 press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9629: Test failed: VK_F10 press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9629: Test failed: VK_F10 press/release: 15: the msg 0x0007 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 16: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 3: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 4: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12912: Test failed: WmStopQuitSeq: 0: the msg 0x031f was expected, but got msg 0x0010 instead msg.c:14494: Test failed: SetActiveWindow(0): 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 4: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 5: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 6: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 7: the msg 0x0008 was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 20: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15614: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15614: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (180796 bytes)
=== w7u_adm (32 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 4: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 6: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 4: the msg 0x0005 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 5: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x000d instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x000d instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 17: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 18: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 19: the msg 0x0016 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 3: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 5: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 31: the msg 0x0009 was expected, but got msg 0x0083 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 32: the msg 0x0007 was expected, but got msg 0x0083 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5460: Test failed: SetWindowPos:Resize: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 11: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 39: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 21: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 13: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 64: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 65: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8275: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8285: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8320: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:9509: Test failed: Alt+VK_N press/release: 11: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 12: the msg 0x00ae was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 13: the msg 0x000d was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 15: the msg 0x0004 was expected, but got msg 0x0120 instead msg.c:9509: Test failed: Alt+VK_N press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9509: Test failed: Alt+VK_N press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9509: Test failed: Alt+VK_N press/release: 22: the msg 0x011f was expected, but got msg 0x0007 instead msg.c:9509: Test failed: Alt+VK_N press/release: 23: the msg 0x0212 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9609: Test failed: Alt press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9609: Test failed: Alt press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 15: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 16: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 19: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9629: Test failed: VK_F10 press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9629: Test failed: VK_F10 press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9629: Test failed: VK_F10 press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9629: Test failed: VK_F10 press/release: 15: the msg 0x0007 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 16: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 3: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 4: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12912: Test failed: WmStopQuitSeq: 0: the msg 0x031f was expected, but got msg 0x0010 instead msg.c:14494: Test failed: SetActiveWindow(0): 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 4: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 5: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 6: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 7: the msg 0x0008 was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 20: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15614: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15614: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (180358 bytes)
=== w7u_el (32 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 4: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 6: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 4: the msg 0x0005 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 5: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x000d instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x000d instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 17: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 18: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 19: the msg 0x0016 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 3: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 5: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 31: the msg 0x0009 was expected, but got msg 0x0083 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 32: the msg 0x0007 was expected, but got msg 0x0083 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5460: Test failed: SetWindowPos:Resize: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 11: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 21: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 13: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 7: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 64: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 65: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8275: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8285: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8320: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12912: Test failed: WmStopQuitSeq: 0: the msg 0x031f was expected, but got msg 0x0010 instead msg.c:14494: Test failed: SetActiveWindow(0): 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 4: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 5: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 6: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 7: the msg 0x0008 was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 20: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:18207: Test failed: Restore minimized window: 5: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:18207: Test failed: Restore minimized window: 7: the msg 0x0007 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 8: the msg 0x0105 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 11: the msg 0x0008 was expected, but got msg 0x0001 instead msg.c:18207: Test failed: Restore minimized window: 13: the msg 0x0001 was expected, but got msg 0x0013 instead msg.c:18207: Test failed: Restore minimized window: 15: the msg 0x0013 was expected, but got msg 0x000d instead msg.c:18207: Test failed: Restore minimized window: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (176840 bytes)
=== w8 (32 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 6: the msg 0x0086 was expected, but got msg 0x0009 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 7: the msg 0x0006 was expected, but got msg 0x0009 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 8: the msg 0x001c was expected, but got msg 0x0009 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 12: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 13: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 15: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 16: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 20: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 22: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 24: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 6: the msg 0x0005 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 9: the msg 0x0046 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 10: the msg 0x001c was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 11: the msg 0x0086 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 13: the msg 0x0006 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 14: the msg 0x0009 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 18: the msg 0x0007 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 3: the msg 0x0008 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 13: the msg 0x0005 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 15: the msg 0x0046 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 16: the msg 0x001c was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 17: the msg 0x0086 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg 0x0006 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 20: the msg 0x0009 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 23: the msg 0x0007 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 39: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 5: the msg 0x0047 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:9509: Test failed: Alt+VK_N press/release: 11: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 12: the msg 0x00ae was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 13: the msg 0x000d was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 15: the msg 0x0004 was expected, but got msg 0x0120 instead msg.c:9509: Test failed: Alt+VK_N press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9509: Test failed: Alt+VK_N press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9509: Test failed: Alt+VK_N press/release: 22: the msg 0x011f was expected, but got msg 0x0007 instead msg.c:9509: Test failed: Alt+VK_N press/release: 23: the msg 0x0212 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9609: Test failed: Alt press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9609: Test failed: Alt press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 15: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 16: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 19: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9629: Test failed: VK_F10 press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9629: Test failed: VK_F10 press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9629: Test failed: VK_F10 press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9629: Test failed: VK_F10 press/release: 15: the msg 0x0007 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 16: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 3: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 4: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14494: Test failed: SetActiveWindow(0): 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 4: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 5: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 6: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 7: the msg 0x0008 was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 20: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 4: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15614: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15614: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (191374 bytes)
=== w8adm (32 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 6: the msg 0x0086 was expected, but got msg 0x0009 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 7: the msg 0x0006 was expected, but got msg 0x0009 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 8: the msg 0x001c was expected, but got msg 0x0009 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 12: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 13: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 15: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 16: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 20: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 22: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 24: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 6: the msg 0x0005 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 9: the msg 0x0046 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 10: the msg 0x001c was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 11: the msg 0x0086 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 13: the msg 0x0006 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 14: the msg 0x0009 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 18: the msg 0x0007 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 3: the msg 0x0008 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 13: the msg 0x0005 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 15: the msg 0x0046 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 16: the msg 0x001c was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 17: the msg 0x0086 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg 0x0006 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 20: the msg 0x0009 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 23: the msg 0x0007 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 5: the msg 0x0047 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:9509: Test failed: Alt+VK_N press/release: 11: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 12: the msg 0x00ae was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 13: the msg 0x000d was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 15: the msg 0x0004 was expected, but got msg 0x0120 instead msg.c:9509: Test failed: Alt+VK_N press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9509: Test failed: Alt+VK_N press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9509: Test failed: Alt+VK_N press/release: 22: the msg 0x011f was expected, but got msg 0x0007 instead msg.c:9509: Test failed: Alt+VK_N press/release: 23: the msg 0x0212 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9609: Test failed: Alt press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9609: Test failed: Alt press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 15: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 16: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 19: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9629: Test failed: VK_F10 press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9629: Test failed: VK_F10 press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9629: Test failed: VK_F10 press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9629: Test failed: VK_F10 press/release: 15: the msg 0x0007 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 16: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 3: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 4: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14494: Test failed: SetActiveWindow(0): 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 4: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 5: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 6: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 7: the msg 0x0008 was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 20: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15614: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15614: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (190665 bytes)
=== w864 (32 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 6: the msg 0x0086 was expected, but got msg 0x0009 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 7: the msg 0x0006 was expected, but got msg 0x0009 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 8: the msg 0x001c was expected, but got msg 0x0009 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 12: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 13: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 15: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 16: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 20: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 22: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 24: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 6: the msg 0x0005 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 9: the msg 0x0046 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 10: the msg 0x001c was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 11: the msg 0x0086 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 13: the msg 0x0006 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 14: the msg 0x0009 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 18: the msg 0x0007 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 3: the msg 0x0008 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 13: the msg 0x0005 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 15: the msg 0x0046 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 16: the msg 0x001c was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 17: the msg 0x0086 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg 0x0006 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 20: the msg 0x0009 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 23: the msg 0x0007 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:9509: Test failed: Alt+VK_N press/release: 11: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 12: the msg 0x00ae was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 13: the msg 0x000d was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 15: the msg 0x0004 was expected, but got msg 0x0120 instead msg.c:9509: Test failed: Alt+VK_N press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9509: Test failed: Alt+VK_N press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9509: Test failed: Alt+VK_N press/release: 22: the msg 0x011f was expected, but got msg 0x0007 instead msg.c:9509: Test failed: Alt+VK_N press/release: 23: the msg 0x0212 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9609: Test failed: Alt press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9609: Test failed: Alt press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 15: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 16: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 19: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9629: Test failed: VK_F10 press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9629: Test failed: VK_F10 press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9629: Test failed: VK_F10 press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9629: Test failed: VK_F10 press/release: 15: the msg 0x0007 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 16: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 3: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 4: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14494: Test failed: SetActiveWindow(0): 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 4: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 5: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 6: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 7: the msg 0x0008 was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 20: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15614: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15614: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (190957 bytes)
=== w1064v1507 (32 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 4: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 6: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 4: the msg 0x0005 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 5: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 16: the msg 0x0083 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 17: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 18: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 19: the msg 0x0016 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 3: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 5: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 31: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 32: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:9509: Test failed: Alt+VK_N press/release: 11: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 12: the msg 0x00ae was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 13: the msg 0x000d was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 15: the msg 0x0004 was expected, but got msg 0x0120 instead msg.c:9509: Test failed: Alt+VK_N press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9509: Test failed: Alt+VK_N press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9509: Test failed: Alt+VK_N press/release: 22: the msg 0x011f was expected, but got msg 0x0007 instead msg.c:9509: Test failed: Alt+VK_N press/release: 23: the msg 0x0212 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9609: Test failed: Alt press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9609: Test failed: Alt press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 15: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 16: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 19: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9629: Test failed: VK_F10 press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9629: Test failed: VK_F10 press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9629: Test failed: VK_F10 press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9629: Test failed: VK_F10 press/release: 15: the msg 0x0007 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 16: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 3: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 4: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14494: Test failed: SetActiveWindow(0): 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 4: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 5: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 6: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 7: the msg 0x0008 was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 20: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:18207: Test failed: Restore minimized window: 5: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:18207: Test failed: Restore minimized window: 7: the msg 0x0007 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 8: the msg 0x0105 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 11: the msg 0x0008 was expected, but got msg 0x0001 instead msg.c:18207: Test failed: Restore minimized window: 13: the msg 0x0001 was expected, but got msg 0x0013 instead msg.c:18207: Test failed: Restore minimized window: 15: the msg 0x0013 was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 16: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:18207: Test failed: Restore minimized window: 26: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 27: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 28: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15614: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15614: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (191045 bytes)
=== w1064v1809 (32 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 4: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 6: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 4: the msg 0x0005 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 5: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 16: the msg 0x0083 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 17: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 18: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 19: the msg 0x0016 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 3: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 5: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 31: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 32: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 27: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 21: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 42: the msg 0x0084 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 43: the msg 0x0020 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 44: the msg 0x0200 was expected, but got msg 0x000f instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:9509: Test failed: Alt+VK_N press/release: 11: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 12: the msg 0x00ae was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 13: the msg 0x000d was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 15: the msg 0x0004 was expected, but got msg 0x0120 instead msg.c:9509: Test failed: Alt+VK_N press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9509: Test failed: Alt+VK_N press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9509: Test failed: Alt+VK_N press/release: 22: the msg 0x011f was expected, but got msg 0x0007 instead msg.c:9509: Test failed: Alt+VK_N press/release: 23: the msg 0x0212 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9609: Test failed: Alt press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9609: Test failed: Alt press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 15: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 16: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 19: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9629: Test failed: VK_F10 press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9629: Test failed: VK_F10 press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9629: Test failed: VK_F10 press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9629: Test failed: VK_F10 press/release: 15: the msg 0x0007 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 16: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 3: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 4: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 4: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:18207: Test failed: Restore minimized window: 5: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:18207: Test failed: Restore minimized window: 7: the msg 0x0007 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 8: the msg 0x0105 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 11: the msg 0x0008 was expected, but got msg 0x0001 instead msg.c:18207: Test failed: Restore minimized window: 13: the msg 0x0001 was expected, but got msg 0x0013 instead msg.c:18207: Test failed: Restore minimized window: 15: the msg 0x0013 was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 16: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:18207: Test failed: Restore minimized window: 26: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 27: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 28: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15614: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15614: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (190710 bytes)
=== w1064 (32 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 4: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 6: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 4: the msg 0x0005 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 5: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 16: the msg 0x0083 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 17: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 18: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 19: the msg 0x0016 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 3: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 5: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 31: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 32: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 27: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 21: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 42: the msg 0x0084 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 43: the msg 0x0020 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 44: the msg 0x0200 was expected, but got msg 0x000f instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:9509: Test failed: Alt+VK_N press/release: 11: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 12: the msg 0x00ae was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 13: the msg 0x000d was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 15: the msg 0x0004 was expected, but got msg 0x0120 instead msg.c:9509: Test failed: Alt+VK_N press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9509: Test failed: Alt+VK_N press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9509: Test failed: Alt+VK_N press/release: 22: the msg 0x011f was expected, but got msg 0x0007 instead msg.c:9509: Test failed: Alt+VK_N press/release: 23: the msg 0x0212 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9609: Test failed: Alt press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9609: Test failed: Alt press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 15: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 16: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 19: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9629: Test failed: VK_F10 press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9629: Test failed: VK_F10 press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9629: Test failed: VK_F10 press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9629: Test failed: VK_F10 press/release: 15: the msg 0x0007 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 16: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 3: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 4: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 4: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:18207: Test failed: Restore minimized window: 5: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:18207: Test failed: Restore minimized window: 7: the msg 0x0007 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 8: the msg 0x0105 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 11: the msg 0x0008 was expected, but got msg 0x0001 instead msg.c:18207: Test failed: Restore minimized window: 13: the msg 0x0001 was expected, but got msg 0x0013 instead msg.c:18207: Test failed: Restore minimized window: 15: the msg 0x0013 was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 16: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:18207: Test failed: Restore minimized window: 26: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 27: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 28: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15614: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15614: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (190710 bytes)
=== w1064_tsign (32 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 4: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 6: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 4: the msg 0x0005 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 5: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 16: the msg 0x0083 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 17: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 18: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 19: the msg 0x0016 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 3: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 5: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 31: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 32: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 27: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 21: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 42: the msg 0x0084 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 43: the msg 0x0020 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 44: the msg 0x0200 was expected, but got msg 0x000f instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:9509: Test failed: Alt+VK_N press/release: 11: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 12: the msg 0x00ae was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 13: the msg 0x000d was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 15: the msg 0x0004 was expected, but got msg 0x0120 instead msg.c:9509: Test failed: Alt+VK_N press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9509: Test failed: Alt+VK_N press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9509: Test failed: Alt+VK_N press/release: 22: the msg 0x011f was expected, but got msg 0x0007 instead msg.c:9509: Test failed: Alt+VK_N press/release: 23: the msg 0x0212 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9609: Test failed: Alt press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9609: Test failed: Alt press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 15: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 16: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 19: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9629: Test failed: VK_F10 press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9629: Test failed: VK_F10 press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9629: Test failed: VK_F10 press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9629: Test failed: VK_F10 press/release: 15: the msg 0x0007 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 16: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 3: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 4: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 4: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:18207: Test failed: Restore minimized window: 5: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:18207: Test failed: Restore minimized window: 7: the msg 0x0007 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 8: the msg 0x0105 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 11: the msg 0x0008 was expected, but got msg 0x0001 instead msg.c:18207: Test failed: Restore minimized window: 13: the msg 0x0001 was expected, but got msg 0x0013 instead msg.c:18207: Test failed: Restore minimized window: 15: the msg 0x0013 was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 16: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:18207: Test failed: Restore minimized window: 26: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 27: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 28: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15614: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15614: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (190818 bytes)
=== w10pro64 (32 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 4: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 6: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 4: the msg 0x0005 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 5: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 16: the msg 0x0083 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 17: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 18: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 19: the msg 0x0016 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 3: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 5: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 31: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 32: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 27: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 21: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 42: the msg 0x0084 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 43: the msg 0x0020 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 44: the msg 0x0200 was expected, but got msg 0x000f instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:9509: Test failed: Alt+VK_N press/release: 11: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 12: the msg 0x00ae was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 13: the msg 0x000d was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 15: the msg 0x0004 was expected, but got msg 0x0120 instead msg.c:9509: Test failed: Alt+VK_N press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9509: Test failed: Alt+VK_N press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9509: Test failed: Alt+VK_N press/release: 22: the msg 0x011f was expected, but got msg 0x0007 instead msg.c:9509: Test failed: Alt+VK_N press/release: 23: the msg 0x0212 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9609: Test failed: Alt press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9609: Test failed: Alt press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 15: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 16: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 19: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9629: Test failed: VK_F10 press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9629: Test failed: VK_F10 press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9629: Test failed: VK_F10 press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9629: Test failed: VK_F10 press/release: 15: the msg 0x0007 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 16: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 3: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 4: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 4: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:18207: Test failed: Restore minimized window: 5: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:18207: Test failed: Restore minimized window: 7: the msg 0x0007 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 8: the msg 0x0105 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 11: the msg 0x0008 was expected, but got msg 0x0001 instead msg.c:18207: Test failed: Restore minimized window: 13: the msg 0x0001 was expected, but got msg 0x0013 instead msg.c:18207: Test failed: Restore minimized window: 15: the msg 0x0013 was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 16: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:18207: Test failed: Restore minimized window: 26: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 27: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 28: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15614: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15614: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (190710 bytes)
=== w864 (64 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 4: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 6: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 4: the msg 0x0005 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 5: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 16: the msg 0x0083 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 17: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 18: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 19: the msg 0x0016 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 3: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 5: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 31: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 32: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:9509: Test failed: Alt+VK_N press/release: 11: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 12: the msg 0x00ae was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 13: the msg 0x000d was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 15: the msg 0x0004 was expected, but got msg 0x0120 instead msg.c:9509: Test failed: Alt+VK_N press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9509: Test failed: Alt+VK_N press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9509: Test failed: Alt+VK_N press/release: 22: the msg 0x011f was expected, but got msg 0x0007 instead msg.c:9509: Test failed: Alt+VK_N press/release: 23: the msg 0x0212 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9609: Test failed: Alt press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9609: Test failed: Alt press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 15: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 16: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 19: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9629: Test failed: VK_F10 press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9629: Test failed: VK_F10 press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9629: Test failed: VK_F10 press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9629: Test failed: VK_F10 press/release: 15: the msg 0x0007 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 16: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 3: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 4: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14494: Test failed: SetActiveWindow(0): 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 4: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 5: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 6: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 7: the msg 0x0008 was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 20: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15614: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15614: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (190270 bytes)
=== w1064v1507 (64 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 4: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 6: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 4: the msg 0x0005 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 5: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 16: the msg 0x0083 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 17: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 18: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 19: the msg 0x0016 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 3: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 5: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 31: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 32: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 39: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:9509: Test failed: Alt+VK_N press/release: 11: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 12: the msg 0x00ae was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 13: the msg 0x000d was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 15: the msg 0x0004 was expected, but got msg 0x0120 instead msg.c:9509: Test failed: Alt+VK_N press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9509: Test failed: Alt+VK_N press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9509: Test failed: Alt+VK_N press/release: 22: the msg 0x011f was expected, but got msg 0x0007 instead msg.c:9509: Test failed: Alt+VK_N press/release: 23: the msg 0x0212 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9609: Test failed: Alt press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9609: Test failed: Alt press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 15: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 16: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 19: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9629: Test failed: VK_F10 press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9629: Test failed: VK_F10 press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9629: Test failed: VK_F10 press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9629: Test failed: VK_F10 press/release: 15: the msg 0x0007 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 16: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 3: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 4: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14494: Test failed: SetActiveWindow(0): 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 4: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 5: the msg 0x001c was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 6: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 7: the msg 0x0008 was expected, but got msg 0x0046 instead msg.c:14494: Test failed: SetActiveWindow(0): 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14494: Test failed: SetActiveWindow(0): 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14494: Test failed: SetActiveWindow(0): 20: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 4: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:18207: Test failed: Restore minimized window: 5: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:18207: Test failed: Restore minimized window: 7: the msg 0x0007 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 8: the msg 0x0105 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 11: the msg 0x0008 was expected, but got msg 0x0001 instead msg.c:18207: Test failed: Restore minimized window: 13: the msg 0x0001 was expected, but got msg 0x0013 instead msg.c:18207: Test failed: Restore minimized window: 15: the msg 0x0013 was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 16: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:18207: Test failed: Restore minimized window: 26: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 27: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 28: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15614: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15614: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (191714 bytes)
=== w1064v1809 (64 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 4: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 6: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 4: the msg 0x0005 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 5: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 16: the msg 0x0083 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 17: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 18: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 19: the msg 0x0016 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 3: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 5: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 31: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 32: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 27: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 21: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 42: the msg 0x0084 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 43: the msg 0x0020 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 44: the msg 0x0200 was expected, but got msg 0x000f instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:9509: Test failed: Alt+VK_N press/release: 11: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 12: the msg 0x00ae was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 13: the msg 0x000d was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 15: the msg 0x0004 was expected, but got msg 0x0120 instead msg.c:9509: Test failed: Alt+VK_N press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9509: Test failed: Alt+VK_N press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9509: Test failed: Alt+VK_N press/release: 22: the msg 0x011f was expected, but got msg 0x0007 instead msg.c:9509: Test failed: Alt+VK_N press/release: 23: the msg 0x0212 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9609: Test failed: Alt press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9609: Test failed: Alt press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 15: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 16: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 19: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9629: Test failed: VK_F10 press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9629: Test failed: VK_F10 press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9629: Test failed: VK_F10 press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9629: Test failed: VK_F10 press/release: 15: the msg 0x0007 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 16: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 3: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 4: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 4: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:18207: Test failed: Restore minimized window: 5: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:18207: Test failed: Restore minimized window: 7: the msg 0x0007 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 8: the msg 0x0105 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 11: the msg 0x0008 was expected, but got msg 0x0001 instead msg.c:18207: Test failed: Restore minimized window: 13: the msg 0x0001 was expected, but got msg 0x0013 instead msg.c:18207: Test failed: Restore minimized window: 15: the msg 0x0013 was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 16: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:18207: Test failed: Restore minimized window: 26: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 27: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 28: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15614: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15614: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 6: the msg 0x0047 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (191168 bytes)
=== w1064 (64 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 4: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 6: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 4: the msg 0x0005 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 5: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 16: the msg 0x0083 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 17: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 18: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 19: the msg 0x0016 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 3: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 5: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 31: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 32: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 27: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 21: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 42: the msg 0x0084 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 43: the msg 0x0020 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 44: the msg 0x0200 was expected, but got msg 0x000f instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:9509: Test failed: Alt+VK_N press/release: 11: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 12: the msg 0x00ae was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 13: the msg 0x000d was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 15: the msg 0x0004 was expected, but got msg 0x0120 instead msg.c:9509: Test failed: Alt+VK_N press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9509: Test failed: Alt+VK_N press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9509: Test failed: Alt+VK_N press/release: 22: the msg 0x011f was expected, but got msg 0x0007 instead msg.c:9509: Test failed: Alt+VK_N press/release: 23: the msg 0x0212 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9609: Test failed: Alt press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9609: Test failed: Alt press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 15: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 16: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 19: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9629: Test failed: VK_F10 press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9629: Test failed: VK_F10 press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9629: Test failed: VK_F10 press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9629: Test failed: VK_F10 press/release: 15: the msg 0x0007 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 16: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 3: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 4: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 4: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:18207: Test failed: Restore minimized window: 5: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:18207: Test failed: Restore minimized window: 7: the msg 0x0007 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 8: the msg 0x0105 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 11: the msg 0x0008 was expected, but got msg 0x0001 instead msg.c:18207: Test failed: Restore minimized window: 13: the msg 0x0001 was expected, but got msg 0x0013 instead msg.c:18207: Test failed: Restore minimized window: 15: the msg 0x0013 was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 16: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:18207: Test failed: Restore minimized window: 26: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 27: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 28: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15614: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15614: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (191023 bytes)
=== w1064_2qxl (64 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 4: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 6: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 4: the msg 0x0005 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 5: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 16: the msg 0x0083 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 17: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 18: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 19: the msg 0x0016 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 3: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 5: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 31: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 32: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 22: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 23: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 27: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 21: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 42: the msg 0x0084 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 43: the msg 0x0020 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 44: the msg 0x0200 was expected, but got msg 0x000f instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:9509: Test failed: Alt+VK_N press/release: 11: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 12: the msg 0x00ae was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 13: the msg 0x000d was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 15: the msg 0x0004 was expected, but got msg 0x0120 instead msg.c:9509: Test failed: Alt+VK_N press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9509: Test failed: Alt+VK_N press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9509: Test failed: Alt+VK_N press/release: 22: the msg 0x011f was expected, but got msg 0x0007 instead msg.c:9509: Test failed: Alt+VK_N press/release: 23: the msg 0x0212 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9609: Test failed: Alt press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9609: Test failed: Alt press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 15: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 16: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 19: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9629: Test failed: VK_F10 press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9629: Test failed: VK_F10 press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9629: Test failed: VK_F10 press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9629: Test failed: VK_F10 press/release: 15: the msg 0x0007 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 16: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 3: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 4: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 4: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:18207: Test failed: Restore minimized window: 5: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:18207: Test failed: Restore minimized window: 7: the msg 0x0007 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 8: the msg 0x0105 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 11: the msg 0x0008 was expected, but got msg 0x0001 instead msg.c:18207: Test failed: Restore minimized window: 13: the msg 0x0001 was expected, but got msg 0x0013 instead msg.c:18207: Test failed: Restore minimized window: 15: the msg 0x0013 was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 16: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:18207: Test failed: Restore minimized window: 26: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 27: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 28: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15614: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15614: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (194161 bytes)
=== w1064_tsign (64 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 4: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 6: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 4: the msg 0x0005 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 5: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 16: the msg 0x0083 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 17: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 18: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 19: the msg 0x0016 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 3: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 5: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 31: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 32: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 27: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 21: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 42: the msg 0x0084 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 43: the msg 0x0020 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 44: the msg 0x0200 was expected, but got msg 0x000f instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:9509: Test failed: Alt+VK_N press/release: 11: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 12: the msg 0x00ae was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 13: the msg 0x000d was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 15: the msg 0x0004 was expected, but got msg 0x0120 instead msg.c:9509: Test failed: Alt+VK_N press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9509: Test failed: Alt+VK_N press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9509: Test failed: Alt+VK_N press/release: 22: the msg 0x011f was expected, but got msg 0x0007 instead msg.c:9509: Test failed: Alt+VK_N press/release: 23: the msg 0x0212 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9609: Test failed: Alt press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9609: Test failed: Alt press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 15: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 16: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 19: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9629: Test failed: VK_F10 press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9629: Test failed: VK_F10 press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9629: Test failed: VK_F10 press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9629: Test failed: VK_F10 press/release: 15: the msg 0x0007 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 16: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 3: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 4: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 4: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:18207: Test failed: Restore minimized window: 5: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:18207: Test failed: Restore minimized window: 7: the msg 0x0007 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 8: the msg 0x0105 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 11: the msg 0x0008 was expected, but got msg 0x0001 instead msg.c:18207: Test failed: Restore minimized window: 13: the msg 0x0001 was expected, but got msg 0x0013 instead msg.c:18207: Test failed: Restore minimized window: 15: the msg 0x0013 was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 16: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:18207: Test failed: Restore minimized window: 26: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 27: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 28: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15614: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15614: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (191026 bytes)
=== w10pro64 (64 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 6: the msg 0x0086 was expected, but got msg 0x0009 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 7: the msg 0x0006 was expected, but got msg 0x0009 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 8: the msg 0x001c was expected, but got msg 0x0009 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 12: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 13: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 15: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 16: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 20: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 22: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 24: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 6: the msg 0x0005 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 9: the msg 0x0046 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 10: the msg 0x001c was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 11: the msg 0x0086 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 13: the msg 0x0006 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 14: the msg 0x0009 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 18: the msg 0x0007 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 3: the msg 0x0008 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 13: the msg 0x0005 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 15: the msg 0x0046 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 16: the msg 0x001c was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 17: the msg 0x0086 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg 0x0006 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 20: the msg 0x0009 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 23: the msg 0x0007 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 27: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 21: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 42: the msg 0x0084 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 43: the msg 0x0020 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 44: the msg 0x0200 was expected, but got msg 0x000f instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:9509: Test failed: Alt+VK_N press/release: 11: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 12: the msg 0x00ae was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 13: the msg 0x000d was expected, but got msg 0x0116 instead msg.c:9509: Test failed: Alt+VK_N press/release: 15: the msg 0x0004 was expected, but got msg 0x0120 instead msg.c:9509: Test failed: Alt+VK_N press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9509: Test failed: Alt+VK_N press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9509: Test failed: Alt+VK_N press/release: 22: the msg 0x011f was expected, but got msg 0x0007 instead msg.c:9509: Test failed: Alt+VK_N press/release: 23: the msg 0x0212 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9520: Test failed: Ctrl+Alt+VK_N press/release 1: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 9: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9571: Test failed: Ctrl+Alt+VK_N press/release 2: 10: the msg 0x0102 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9609: Test failed: Alt press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9609: Test failed: Alt press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9609: Test failed: Alt press/release: 15: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 16: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9609: Test failed: Alt press/release: 19: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9629: Test failed: VK_F10 press/release: 9: the msg 0x0008 was expected, but got msg 0x0116 instead msg.c:9629: Test failed: VK_F10 press/release: 11: the msg 0x0004 was expected, but got msg 0x011f instead msg.c:9629: Test failed: VK_F10 press/release: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:9629: Test failed: VK_F10 press/release: 15: the msg 0x0007 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 16: the msg 0x8005 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 17: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:9629: Test failed: VK_F10 press/release: 20: the msg 0x0005 was expected, but got msg 0x0212 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 3: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:9663: Test failed: Shift+MouseButton press/release: 4: the msg 0x0200 was expected, but got msg 0x0201 instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 4: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:18207: Test failed: Restore minimized window: 5: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:18207: Test failed: Restore minimized window: 7: the msg 0x0007 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 8: the msg 0x0105 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 11: the msg 0x0008 was expected, but got msg 0x0001 instead msg.c:18207: Test failed: Restore minimized window: 13: the msg 0x0001 was expected, but got msg 0x0013 instead msg.c:18207: Test failed: Restore minimized window: 15: the msg 0x0013 was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 16: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:18207: Test failed: Restore minimized window: 26: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 27: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 28: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15614: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15614: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 10: the msg 0x011f was expected, but got msg 0x0003 instead msg.c:15662: Test failed: submenu of a popup menu command: 11: the msg 0x0117 was expected, but got msg 0x0003 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 6: the msg 0x0047 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (191592 bytes)
=== w10pro64_ar (64 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 6: the msg 0x0086 was expected, but got msg 0x0009 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 7: the msg 0x0006 was expected, but got msg 0x0009 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 8: the msg 0x001c was expected, but got msg 0x0009 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 7: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 12: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 13: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 15: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 16: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 20: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 22: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 24: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 6: the msg 0x0005 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 9: the msg 0x0046 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 10: the msg 0x001c was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 11: the msg 0x0086 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 13: the msg 0x0006 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 14: the msg 0x0009 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 18: the msg 0x0007 was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 3: the msg 0x0008 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 13: the msg 0x0005 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 15: the msg 0x0046 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 16: the msg 0x001c was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 17: the msg 0x0086 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 19: the msg 0x0006 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 20: the msg 0x0009 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 23: the msg 0x0007 was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 27: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 21: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 42: the msg 0x0084 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 43: the msg 0x0020 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 44: the msg 0x0200 was expected, but got msg 0x000f instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 4: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:18207: Test failed: Restore minimized window: 5: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:18207: Test failed: Restore minimized window: 7: the msg 0x0007 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 8: the msg 0x0105 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 11: the msg 0x0008 was expected, but got msg 0x0001 instead msg.c:18207: Test failed: Restore minimized window: 13: the msg 0x0001 was expected, but got msg 0x0013 instead msg.c:18207: Test failed: Restore minimized window: 15: the msg 0x0013 was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 16: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:18207: Test failed: Restore minimized window: 26: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 27: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 28: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (187647 bytes)
=== w10pro64_he (64 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 4: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 6: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 4: the msg 0x0005 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 5: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 16: the msg 0x0083 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 17: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 18: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 19: the msg 0x0016 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 3: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 5: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 31: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 32: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 27: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 21: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 42: the msg 0x0084 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 43: the msg 0x0020 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 44: the msg 0x0200 was expected, but got msg 0x000f instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:18207: Test failed: Restore minimized window: 5: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:18207: Test failed: Restore minimized window: 7: the msg 0x0007 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 8: the msg 0x0105 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 11: the msg 0x0008 was expected, but got msg 0x0001 instead msg.c:18207: Test failed: Restore minimized window: 13: the msg 0x0001 was expected, but got msg 0x0013 instead msg.c:18207: Test failed: Restore minimized window: 15: the msg 0x0013 was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 16: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:18207: Test failed: Restore minimized window: 26: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 27: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 28: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (186494 bytes)
=== w10pro64_ja (64 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 4: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 6: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 4: the msg 0x0005 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 5: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 16: the msg 0x0083 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 17: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 18: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 19: the msg 0x0016 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 3: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 5: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 31: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 32: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 27: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 21: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 42: the msg 0x0084 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 43: the msg 0x0020 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 44: the msg 0x0200 was expected, but got msg 0x000f instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 4: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:18207: Test failed: Restore minimized window: 5: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:18207: Test failed: Restore minimized window: 7: the msg 0x0007 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 8: the msg 0x0105 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 11: the msg 0x0008 was expected, but got msg 0x0001 instead msg.c:18207: Test failed: Restore minimized window: 13: the msg 0x0001 was expected, but got msg 0x0013 instead msg.c:18207: Test failed: Restore minimized window: 15: the msg 0x0013 was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 16: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:18207: Test failed: Restore minimized window: 26: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 27: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 28: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 12: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (186760 bytes)
=== w10pro64_zh_CN (64 bit report) ===
user32: msg.c:17362: Test failed: SetFocus on a child window: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:17362: Test failed: SetFocus on a child window: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17362: Test failed: SetFocus on a child window: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 5: the msg 0x0086 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 6: the msg 0x0006 was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 7: the msg 0x001c was expected, but got msg 0x8005 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 12: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 13: the msg 0x0003 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 14: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 15: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 16: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 17: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 18: the msg 0x8005 was expected, but got msg 0x0047 instead msg.c:16792: Test failed: SetParent() visible WS_POPUP: 19: the msg 0x0007 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 3: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 5: ShowWindow(SW_SHOWMINIMIZED): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 9: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 11: ShowWindow(SW_HIDE): 3: the msg 0x0005 was expected, but got msg 0x0009 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 17: ShowWindow(SW_SHOW): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 19: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 30: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 37: ShowWindow(SW_RESTORE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 40: ShowWindow(SW_MINIMIZE): 1: the msg 0x0009 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 6: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 42: ShowWindow(SW_SHOWMAXIMIZED): 8: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 44: ShowWindow(SW_MINIMIZE): 2: the msg 0x8005 was expected, but got msg 0x0046 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 3: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 4: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 48: ShowWindow(SW_SHOWMAXIMIZED): 5: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 50: ShowWindow(SW_SHOWNORMAL): 3: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 54: ShowWindow(SW_MINIMIZE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:13749: Test failed: 56: ShowWindow(SW_SHOWNOACTIVATE): 4: the msg 0x0009 was expected, but got msg 0x0047 instead msg.c:5366: Test failed: CreateWindow:overlapped: 4: the msg 0x0093 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 5: the msg 0x0094 was expected, but got msg 0x0001 instead msg.c:5366: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 1: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 2: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 4: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 7: the msg 0x0055 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 8: the msg 0x0129 was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 13: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 22: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 25: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 27: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 28: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 29: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5377: Test failed: SetWindowPos:SWP_SHOWWINDOW:overlapped: 31: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5384: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 1: the msg 0x0085 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 3: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 4: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 5: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 6: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 11: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 14: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 21: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 26: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 27: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5401: Test failed: ShowWindow(SW_SHOW):overlapped: 30: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 4: the msg 0x0005 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 5: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5413: Test failed: ShowWindow(SW_HIDE):overlapped: 9: the msg 0x0009 was expected, but got msg 0x0008 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 5: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 8: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 19: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 26: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 27: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 28: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 29: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 30: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 31: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5417: Test failed: ShowWindow(SW_SHOWMAXIMIZED):overlapped: 33: the msg 0x033f was expected, but got msg 0x000f instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 1: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5424: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 4: the msg 0x0281 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 5: the msg 0x0282 was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 6: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 10: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 11: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 12: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 16: the msg 0x0083 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 17: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 18: the msg 0x800b was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 19: the msg 0x0016 was expected, but got msg 0x0086 instead msg.c:5430: Test failed: ShowWindow(SW_SHOWMINIMIZED):overlapped: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 3: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 5: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 6: the msg 0x0083 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 7: the msg 0x0003 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 8: the msg 0x0005 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 9: the msg 0x000d was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 10: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 14: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 24: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 26: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 31: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 32: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 33: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 34: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 35: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 36: the msg 0x0009 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 37: the msg 0x0007 was expected, but got msg 0x0006 instead msg.c:5437: Test failed: ShowWindow(SW_RESTORE):overlapped: 39: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 2: the msg 0x0005 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 3: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 4: the msg 0x001c was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 5: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:5446: Test failed: SetWindowPos:SWP_HIDEWINDOW:overlapped: 6: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4672: Test failed: SetScrollRange(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 2: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 4: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 5: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 6: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 7: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 8: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 9: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 10: the msg 0x007c was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 11: the msg 0x007d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 12: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4714: Test failed: SetScrollInfo(SB_HORZ/SB_VERT) NC: 15: the msg 0x0136 was expected, but got msg 0x0047 instead msg.c:5460: Test failed: SetWindowPos:Resize: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5464: Test failed: SetWindowPos:Move: 1: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5464: Test failed: SetWindowPos:Move: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5468: Test failed: SetWindowPos:WmSWP_ResizeNoZOrder: 7: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 1: the msg 0x0024 was expected, but got msg 0x0083 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 4: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5477: Test failed: SetWindowPos:ResizePopup: 5: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 4: the msg 0x0090 was expected, but got msg 0x0047 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 10: the msg 0x0281 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 11: the msg 0x0282 was expected, but got msg 0x0002 instead msg.c:5480: Test failed: DestroyWindow:overlapped: 12: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5491: Test failed: RedrawWindow:show_popup_first_draw_visible: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 16: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 17: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5502: Test failed: RedrawWindow:show_popup_first_draw_show: 18: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 13: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 14: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 16: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 20: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 21: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 22: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5513: Test failed: RedrawWindow:show_popup_first_draw_show_maximized: 23: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5517: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5518: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5520: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5522: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5523: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5524: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5525: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5526: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5528: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5529: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5530: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5531: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5532: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5533: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5535: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5536: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5537: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5538: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5539: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5540: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5542: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5543: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5544: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 10: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5545: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5546: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 14: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 15: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 16: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5547: Test failed: SetWindowPos:show_popup_first_show_window: 17: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 11: the msg 0x030f was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 12: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 13: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 14: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 18: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 19: the msg 0x0281 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 20: the msg 0x0282 was expected, but got msg 0x0009 instead msg.c:5586: Test failed: RedrawWindow:show_popup_extreme_location: 21: the msg 0x8005 was expected, but got msg 0x0009 instead msg.c:5600: Test failed: CreateWindow:maximized child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5600: Test failed: CreateWindow:maximized child: 13: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:5609: Test failed: CreateWindow:visible child: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5609: Test failed: CreateWindow:visible child: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5609: Test failed: CreateWindow:visible child: 11: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5609: Test failed: CreateWindow:visible child: 12: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4674: Test failed: SetScrollRange(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 2: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4716: Test failed: SetScrollInfo(SB_HORZ/SB_VERT): 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5623: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5638: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5643: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0014 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5647: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5650: Test failed: ShowWindow(SW_HIDE):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5653: Test failed: ShowWindow(SW_SHOW):child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5660: Test failed: MoveWindow:child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5666: Test failed: SetWindowPos:show_child_2: 1: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:5671: Test failed: SetWindowPos:show_child_3: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5678: Test failed: DestroyWindow:child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5678: Test failed: DestroyWindow:child: 14: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5686: Test failed: CreateWindow:child_popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5694: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 2: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 11: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5705: Test failed: SetWindowPos:show_visible_popup_3: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5715: Test failed: CreateWindow:invisible_popup: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5730: Test failed: CreateCustomDialog: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:5730: Test failed: CreateCustomDialog: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5730: Test failed: CreateCustomDialog: 21: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 23: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 24: the msg 0x8011 was expected, but got msg 0x0006 instead msg.c:5730: Test failed: CreateCustomDialog: 26: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5730: Test failed: CreateCustomDialog: 28: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5730: Test failed: CreateCustomDialog: 35: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 36: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5730: Test failed: CreateCustomDialog: 40: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 41: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 42: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 43: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 44: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 45: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 46: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 47: the msg 0x0136 was expected, but got msg 0x0005 instead msg.c:5730: Test failed: CreateCustomDialog: 48: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5745: Test failed: EndCustomDialog: 3: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5745: Test failed: EndCustomDialog: 6: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 7: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5745: Test failed: EndCustomDialog: 9: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5745: Test failed: EndCustomDialog: 11: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 12: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 13: the msg 0x000d was expected, but got msg 0x0009 instead msg.c:5745: Test failed: EndCustomDialog: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5745: Test failed: EndCustomDialog: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 2: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:5760: Test failed: ShowCustomDialog: 4: the msg 0x0003 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 5: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 6: the msg 0x0046 was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 7: the msg 0x001c was expected, but got msg 0x0086 instead msg.c:5760: Test failed: ShowCustomDialog: 10: the msg 0x000d was expected, but got msg 0x0008 instead msg.c:5760: Test failed: ShowCustomDialog: 12: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 13: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 14: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:5760: Test failed: ShowCustomDialog: 15: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5767: Test failed: DrawMenuBar: 2: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 3: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 4: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 5: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 6: the msg 0x0091 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 7: the msg 0x0092 was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:5767: Test failed: DrawMenuBar: 9: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:5786: Test failed: ModalDialog: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:5786: Test failed: ModalDialog: 16: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 17: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 20: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 23: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:5786: Test failed: ModalDialog: 25: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5786: Test failed: ModalDialog: 29: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 30: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 31: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 32: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 33: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 34: the msg 0x0136 was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 35: the msg 0x800b was expected, but got msg 0x000f instead msg.c:5786: Test failed: ModalDialog: 38: the msg 0x033f was expected, but got msg 0x0121 instead msg.c:5786: Test failed: ModalDialog: 40: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 41: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 42: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 43: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 44: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 45: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 46: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 47: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 48: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 49: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 50: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 51: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 52: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 53: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 54: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 55: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 56: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 57: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 58: the msg 0x0121 was expected, but got msg 0x0113 instead msg.c:5786: Test failed: ModalDialog: 60: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5786: Test failed: ModalDialog: 63: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:5786: Test failed: ModalDialog: 65: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:5786: Test failed: ModalDialog: 68: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5786: Test failed: ModalDialog: 70: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5786: Test failed: ModalDialog: 72: the msg 0x0047 was expected, but got msg 0x0009 instead msg.c:5786: Test failed: ModalDialog: 74: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 75: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:5786: Test failed: ModalDialog: 77: the msg 0x0011 was expected, but got msg 0x0004 instead msg.c:5786: Test failed: ModalDialog: 80: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:5801: Test failed: CreateWindow:overlapped: 6: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:5803: Test failed: SetMenu:NonVisibleSizeChange: 2: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5811: Test failed: SetMenu:VisibleNoSizeChange: 5: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 3: the msg 0x8004 was expected, but got msg 0x0085 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 9: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5813: Test failed: SetMenu:VisibleSizeChange: 11: the msg 0x0006 was expected, but got msg 0x0047 instead msg.c:5820: Test failed: DrawMenuBar: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5838: Test failed: EnableWindow(FALSE): 1: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 2: the msg 0x0009 was expected, but got msg 0x000a instead msg.c:5838: Test failed: EnableWindow(FALSE): 3: the msg 0x0008 was expected, but got msg 0x000a instead msg.c:5844: Test failed: EnableWindow(TRUE): 0: the msg 0x800a was expected, but got msg 0x000a instead msg.c:5990: Test failed: Z-Order: 3: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:5990: Test failed: Z-Order: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 6: the msg 0x000d was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 7: the msg 0x0083 was expected, but got msg 0x001c instead msg.c:5990: Test failed: Z-Order: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 11: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:5990: Test failed: Z-Order: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:5990: Test failed: Z-Order: 15: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 0: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 1: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 2: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 3: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 4: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 5: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 8: the msg 0x8002 was expected, but got msg 0x0085 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 10: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 13: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 14: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 15: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:4855: Test failed: ShowWindow(SW_SHOWNA) on invisible top level window: 16: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4887: Test failed: ShowWindow(SW_SHOWNA) for the invisible child and visible parent: 2: the msg 0x8002 was expected, but got msg 0x0014 instead msg.c:4908: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 20: the msg 0x000d was expected, but got msg 0x0047 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 21: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 22: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4922: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized and resized popup: 24: the msg 0x0003 was expected, but got msg 0x0005 instead msg.c:4940: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 4: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 6: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 7: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 9: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 10: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 11: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 20: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 21: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 24: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 25: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4945: Test failed: ShowWindow(SW_SHOWMAXIMIZED):invisible maximized popup: 27: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 14: the msg 0x800b was expected, but got msg 0x0018 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 17: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 19: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 20: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 22: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 23: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 24: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 33: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 34: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 37: the msg 0x0085 was expected, but got msg 0x0047 instead msg.c:4957: Test failed: CreateWindow(WS_MAXIMIZED):popup: 38: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 9: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 11: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 14: the msg 0x0085 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 15: the msg 0x0014 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 16: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 21: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 22: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 23: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 25: the msg 0x000d was expected, but got msg 0x0085 instead msg.c:4970: Test failed: CreateWindow(WS_VISIBLE):popup: 26: the msg 0x0088 was expected, but got msg 0x0085 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 4: the msg 0x000d was expected, but got msg 0x0083 instead msg.c:4975: Test failed: ShowWindow(SW_SHOWMAXIMIZED):popup: 6: the msg 0x030f was expected, but got msg 0x0085 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:4996: Test failed: ShowWindow(hwnd, SW_RESTORE): minimized overlapped: 24: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 7: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 12: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 13: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 14: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 15: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 16: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 17: the msg 0x0005 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 18: the msg 0x0046 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 19: the msg 0x0086 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 20: the msg 0x000d was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 21: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 24: the msg 0x0008 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 25: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 26: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5006: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): minimized overlapped: 27: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:5026: Test failed: ShowWindow(hwnd, SW_RESTORE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 2: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 6: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 7: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 8: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 9: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 14: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 19: the msg 0x0083 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 20: the msg 0x0085 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 21: the msg 0x0014 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 22: the msg 0x0009 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 23: the msg 0x0007 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 24: the msg 0x0006 was expected, but got msg 0x000f instead msg.c:5036: Test failed: ShowWindow(hwnd, SW_SHOWNOACTIVATE): active minimized overlapped: 25: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:6032: Test failed: CreateWindow:child: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6035: Test failed: ShowWindow(SW_MINIMIZE) child with invisible parent: 4: the msg 0x0022 was expected, but got msg 0x0047 instead msg.c:6051: Test failed: ShowWindow(SW_MAXIMIZE) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6077: Test failed: ShowWindow(SW_SHOWMINIMIZED) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6094: Test failed: ShowWindow(SW_SHOWMAXIMIZED) child with invisible parent: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:6104: Test failed: ShowWindow(SW_SHOWMINNOACTIVE) child with invisible parent: 3: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6165: Test failed: SetWindowPos:show child with invisible parent: 1: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:6170: Test failed: SetWindowPos:hide child with invisible parent: 1: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:6177: Test failed: DestroyInvisibleChildSeq: 4: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4004: Test failed: Create MDI frame window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4004: Test failed: Create MDI frame window: 6: the msg 0x8000 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 7: the msg 0x0055 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 8: the msg 0x0129 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 9: the msg 0x0046 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 10: the msg 0x0024 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 11: the msg 0x0083 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 12: the msg 0x0047 was expected, but got msg 0x0018 instead msg.c:4004: Test failed: Create MDI frame window: 15: the msg 0x8002 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 17: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 18: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:4004: Test failed: Create MDI frame window: 22: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:4004: Test failed: Create MDI frame window: 24: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:4004: Test failed: Create MDI frame window: 26: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 27: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 28: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4004: Test failed: Create MDI frame window: 31: the msg 0x0083 was expected, but got msg 0x0005 instead msg.c:4004: Test failed: Create MDI frame window: 32: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4021: Test failed: Create visible MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4021: Test failed: Create visible MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4041: Test failed: ShowWindow(SW_SHOWNORMAL) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4054: Test failed: ShowWindow(SW_HIDE) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4058: Test failed: ShowWindow(SW_SHOW) MDI child window: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4079: Test failed: Create visible MDI child window: 10: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4079: Test failed: Create visible MDI child window: 18: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 20: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 25: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4079: Test failed: Create visible MDI child window: 26: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4093: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4093: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4093: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4115: Test failed: Create invisible MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 4: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4134: Test failed: ShowWindow(SW_MAXIMIZE):invisible MDI child: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4153: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4156: Test failed: ShowWindow(SW_RESTORE):invisible MDI child: 3: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4171: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4174: Test failed: ShowWindow(SW_SHOW):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 8: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 9: the msg 0x0017 was expected, but got msg 0x0009 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4203: Test failed: ShowWindow(SW_RESTORE):minimized MDI child: 13: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 2: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4217: Test failed: ShowWindow(SW_HIDE):MDI child: 3: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4223: Test failed: Destroy invisible MDI child window: 3: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4279: Test failed: Create maximized visible 1st MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4298: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4312: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4312: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4312: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4341: Test failed: Create maximized visible 2nd MDI child 2 window: 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 6: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 24: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 29: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 30: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 41: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 43: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 49: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 57: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 58: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4354: Test failed: WM_SYSCOMMAND/SC_CLOSE on a visible maximized MDI child window: 60: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4367: Test failed: Destroy visible MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4367: Test failed: Destroy visible MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4367: Test failed: Destroy visible MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4367: Test failed: Destroy visible MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 8: the msg 0x0046 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 9: the msg 0x0083 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 10: the msg 0x0047 was expected, but got msg 0x0003 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 23: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 25: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4387: Test failed: Create maximized invisible MDI child window: 26: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 5: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 11: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 17: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4403: Test failed: ShowWindow(SW_MAXIMIZE):invisible maximized MDI child: 21: the msg 0x800b was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 16: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 21: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 30: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 35: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4425: Test failed: Create maximized visible 1st MDI child window(Switch test): 37: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 10: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 11: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 17: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 24: the msg 0x8004 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 30: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 31: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 35: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 46: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 47: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 48: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 52: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 53: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4444: Test failed: Create maximized visible 2nd MDI child window (Switch test): 54: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4459: Test failed: Child did not switch correctly: 17: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4459: Test failed: Child did not switch correctly: 20: the msg 0x800b was expected, but got msg 0x000b instead msg.c:4459: Test failed: Child did not switch correctly: 25: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 26: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4459: Test failed: Child did not switch correctly: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 32: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4459: Test failed: Child did not switch correctly: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 2: the msg 0x8004 was expected, but got msg 0x0022 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4472: Test failed: Not maximized child did not switch correctly: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 5: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 17: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 18: the msg 0x800b was expected, but got msg 0x0210 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 22: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 29: the msg 0x0007 was expected, but got msg 0x0009 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 31: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 32: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 33: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 38: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 39: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 45: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4497: Test failed: WM_MDICREATE for maximized visible MDI child window: 60: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 4: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 8: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 9: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 21: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x0093 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 40: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 57: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 58: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 60: the msg 0x0083 was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 65: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 66: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 67: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 68: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 69: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 76: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 83: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 90: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 100: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 101: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 102: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 103: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 104: the msg 0x800b was expected, but got msg 0x0009 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 107: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 108: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 109: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 117: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 118: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4514: Test failed: Destroy visible maximized MDI child window: 120: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4526: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4526: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4535: Test failed: Create MDI client window: 3: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4535: Test failed: Create MDI client window: 5: the msg 0x8004 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4535: Test failed: Create MDI client window: 12: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4538: Test failed: Hide MDI client window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 4: the msg 0x8004 was expected, but got msg 0x0001 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 6: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 19: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4544: Test failed: Create MDI child window with invisible parent: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 6: the msg 0x8002 was expected, but got msg 0x0022 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 15: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 16: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 34: the msg 0x800b was expected, but got msg 0x0046 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 44: the msg 0x800b was expected, but got msg 0x0083 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 46: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 47: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4547: Test failed: Maximize MDI child window with invisible parent: 48: the msg 0x800b was expected, but got msg 0x0093 instead msg.c:4552: Test failed: Show MDI client window: 2: the msg 0x8002 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 6: the msg 0x0014 was expected, but got msg 0x0047 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 10: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 12: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 18: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 20: the msg 0x8001 was expected, but got msg 0x0009 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 23: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 24: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 25: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 29: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 30: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 31: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 36: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 37: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 38: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 42: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 43: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:4555: Test failed: Destroy visible maximized MDI child window: 44: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:4560: Test failed: Destroy MDI client window: 5: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4560: Test failed: Destroy MDI client window: 7: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 3: the msg 0x8003 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 4: the msg 0x0086 was expected, but got msg 0x0047 instead msg.c:4563: Test failed: Destroy MDI frame window: 7: the msg 0x0006 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 8: the msg 0x001c was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 9: the msg 0x8003 was expected, but got msg 0x0002 instead msg.c:4563: Test failed: Destroy MDI frame window: 10: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[0]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[0]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[1]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[1]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[2]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[2]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[3]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[3]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[4]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[4]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[5]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[5]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[6]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x00f1 instead msg.c:6851: Test failed: button[6]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x00f1 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 7: the msg 0x0111 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[7]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[7]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[8]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[8]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 5: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6711: Test failed: SetFocus(hwnd) on a button: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6716: Test failed: SetFocus(0) on a button: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:6716: Test failed: SetFocus(0) on a button: 6: the msg 0x0281 was expected, but got msg 0x8000 instead msg.c:6716: Test failed: SetFocus(0) on a button: 7: the msg 0x0282 was expected, but got msg 0x8000 instead msg.c:6723: Test failed: BM_SETSTYLE on a button: 3: the msg 0x0085 was expected, but got msg 0x0014 instead msg.c:6787: Test failed: button[10]: WM_SETTEXT on a visible button: 3: the msg 0x0111 was expected, but got msg 0x002b instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:6846: Test failed: button[10]: WM_LBUTTONDOWN on a button: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 3: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:6851: Test failed: button[10]: WM_LBUTTONUP on a button: 4: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 2: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 7: the msg 0x0138 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 8: the msg 0x00f1 was expected, but got msg 0x0135 instead msg.c:6896: Test failed: Mouseclick on a disabled button: 10: the msg 0x0138 was expected, but got msg 0x0215 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 2: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 5: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 9: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 15: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 19: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7252: Test failed: BM_CLICK on auto-radio button: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 7: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 18: the msg 0x0008 was expected, but got msg 0x00f3 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 21: the msg 0x800a was expected, but got msg 0x0202 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 25: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 29: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 33: the msg 0x800a was expected, but got msg 0x0087 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 38: the msg 0x800a was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 39: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 42: the msg 0x0084 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 43: the msg 0x0020 was expected, but got msg 0x000f instead msg.c:7383: Test failed: IsDialogMessage(VK_DOWN): 44: the msg 0x0200 was expected, but got msg 0x000f instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 4: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 9: the msg 0x8005 was expected, but got msg 0x0131 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 11: the msg 0x0008 was expected, but got msg 0x002b instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 18: the msg 0x8005 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 19: the msg 0x8006 was expected, but got msg 0x0202 instead msg.c:15213: Test failed: WM_LBUTTONDOWN 0: 21: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:7854: Test failed: SetFocus on a Button: 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:7868: Test failed: SetFocus on a Button (2): 1: the msg 0x0164 was expected, but got msg 0x0167 instead msg.c:8238: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8263: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8293: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8306: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8379: Test failed: InvalidateErase: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8388: Test failed: InvalidateErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8460: Test failed: GetUpdateRect: 1: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8484: Test failed: InvalidateParentChild: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8484: Test failed: InvalidateParentChild: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8494: Test failed: InvalidateParent: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8499: Test failed: WmParentPaintNc: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8503: Test failed: InvalidateParent2: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8509: Test failed: InvalidateParentChild2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8515: Test failed: InvalidateParentChild3: 4: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8526: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8540: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8554: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8578: Test failed: WmParentErasePaint: 6: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8588: Test failed: WmInvalidateErasePaint2: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8611: Test failed: WmParentPaintNc2: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8620: Test failed: WmParentPaintNc3: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8629: Test failed: WmChildPaintNc: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8680: Test failed: SetWindowPos:FrameChanged_clip: 8: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8690: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:8707: Test failed: SetWindowPos:FrameChanged_noclip: 6: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 3: the msg 0x800b was expected, but got msg 0x000f instead msg.c:8717: Test failed: SetWindowPos:FrameChangedDeferErase: 6: the msg 0x000d was expected, but got msg 0x000f instead msg.c:11491: Test failed: destroy window with children: 0: the msg 0x0008 was expected, but got msg 0x0004 instead msg.c:11491: Test failed: destroy window with children: 5: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11491: Test failed: destroy window with children: 9: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:11542: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11542: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11562: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 1: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11585: Test failed: WmDispatchPaint: 2: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 1: the msg 0x0281 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 2: the msg 0x0282 was expected, but got msg 0x0008 instead msg.c:11910: Test failed: SetFocus(hwnd) on an invisible edit: 3: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 5: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11918: Test failed: SetFocus(hwnd) on an edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11921: Test failed: SetFocus(0) on an edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 2: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 3: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 4: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 6: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 10: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 11: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 13: the msg 0x0008 was expected, but got msg 0x0133 instead msg.c:11935: Test failed: WM_LBUTTONDOWN on an edit: 14: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 1: the msg 0x8003 was expected, but got msg 0x0215 instead msg.c:11938: Test failed: WM_LBUTTONUP on an edit: 2: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 1: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 2: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 3: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 5: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 6: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 7: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11957: Test failed: SetFocus(hwnd) on multiline edit: 8: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 1: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 3: the msg 0x8003 was expected, but got msg 0x0111 instead msg.c:11960: Test failed: SetFocus(0) on multiline edit: 4: the msg 0x8001 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 1: the msg 0x0008 was expected, but got msg 0x0009 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 3: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 4: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 5: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 7: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 8: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 9: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:11974: Test failed: WM_LBUTTONDOWN on multiline edit: 10: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:11977: Test failed: WM_LBUTTONUP on multiline edit: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:12912: Test failed: WmStopQuitSeq: 0: the msg 0x031f was expected, but got msg 0x0010 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 7: the msg 0x0085 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 8: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 9: the msg 0x0014 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 10: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 12: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 16: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 17: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 18: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14505: Test failed: SetActiveWindow(popup), hwnd visible, popup visible: 19: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 1: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 4: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 5: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 11: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14515: Test failed: SetActiveWindow(hwnd), hwnd not visible: 12: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 2: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 4: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 7: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 8: the msg 0x0047 was expected, but got msg 0x0086 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 10: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 14: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 15: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 16: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14521: Test failed: SetActiveWindow(popup), hwnd not visible, popup not visible: 17: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:18207: Test failed: Restore minimized window: 5: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:18207: Test failed: Restore minimized window: 7: the msg 0x0007 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 8: the msg 0x0105 was expected, but got msg 0x0112 instead msg.c:18207: Test failed: Restore minimized window: 11: the msg 0x0008 was expected, but got msg 0x0001 instead msg.c:18207: Test failed: Restore minimized window: 13: the msg 0x0001 was expected, but got msg 0x0013 instead msg.c:18207: Test failed: Restore minimized window: 15: the msg 0x0013 was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 16: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:18207: Test failed: Restore minimized window: 21: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:18207: Test failed: Restore minimized window: 26: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 27: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:18207: Test failed: Restore minimized window: 28: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:13180: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13180: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13194: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 0: the msg 0x0024 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 1: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 2: the msg 0x0021 was expected, but got msg 0x0118 instead msg.c:13202: Test failed: WmMouseHoverSeq: 3: the msg 0x0113 was expected, but got msg 0x0118 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 3: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 8: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 13: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:13293: Test failed: WmSetWindowRgn_clear: 18: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 6: the msg 0x0281 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 7: the msg 0x0282 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 8: the msg 0x8005 was expected, but got msg 0x0007 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 10: the msg 0x0282 was expected, but got msg 0x0133 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 12: the msg 0x0282 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 13: the msg 0x8000 was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 14: the msg 0x800b was expected, but got msg 0x0111 instead msg.c:14079: Test failed: DefDlgProc(WM_SETFOCUS) 1: 15: the msg 0x8002 was expected, but got msg 0x0111 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 1: the msg 0x000e was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 2: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 3: the msg 0x000d was expected, but got msg 0x00b1 instead msg.c:14090: Test failed: DefDlgProc(WM_SETFOCUS) 2: 5: the msg 0x8003 was expected, but got msg 0x0133 instead msg.c:14118: Test failed: CreateDialogParam_0: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14129: Test failed: CreateDialogParam_1: 12: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 13: the msg 0x0310 was expected, but got msg 0x0046 instead msg.c:14129: Test failed: CreateDialogParam_1: 15: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14138: Test failed: CreateDialogParam_2: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 5: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 6: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 7: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14145: Test failed: CreateDialogParam_3: 9: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14145: Test failed: CreateDialogParam_3: 11: the msg 0x0046 was expected, but got msg 0x0047 instead msg.c:14145: Test failed: CreateDialogParam_3: 13: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 4: the msg 0x8000 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 11: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 12: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 13: the msg 0x00b1 was expected, but got msg 0x0005 instead msg.c:14155: Test failed: CreateDialogParam_4: 15: the msg 0x030f was expected, but got msg 0x0046 instead msg.c:14155: Test failed: CreateDialogParam_4: 17: the msg 0x0046 was expected, but got msg 0x001c instead msg.c:14155: Test failed: CreateDialogParam_4: 18: the msg 0x0047 was expected, but got msg 0x001c instead msg.c:14186: Test failed: ModalDialog2: 2: the msg 0x8005 was expected, but got msg 0x0008 instead msg.c:14186: Test failed: ModalDialog2: 4: the msg 0x0281 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 5: the msg 0x800a was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 8: the msg 0x8004 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 9: the msg 0x8000 was expected, but got msg 0x0030 instead msg.c:14186: Test failed: ModalDialog2: 12: the msg 0x0127 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 13: the msg 0x0128 was expected, but got msg 0x000a instead msg.c:14186: Test failed: ModalDialog2: 16: the msg 0x8003 was expected, but got msg 0x0127 instead msg.c:14186: Test failed: ModalDialog2: 21: the msg 0x8001 was expected, but got msg 0x0002 instead msg.c:14216: Test failed: EndDialog: 6: the msg 0x030f was expected, but got msg 0x0086 instead msg.c:14216: Test failed: EndDialog: 8: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:14237: Test failed: EndDialog2: 6: the msg 0x0046 was expected, but got msg 0x0009 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 3: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 4: the msg 0x0086 was expected, but got msg 0x0046 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 6: the msg 0x0047 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 7: the msg 0x0046 was expected, but got msg 0x0024 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 10: the msg 0x0085 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 11: the msg 0x000d was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 12: the msg 0x0014 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 13: the msg 0x0047 was expected, but got msg 0x0005 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 18: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 23: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 28: the msg 0x0083 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 29: the msg 0x0085 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 30: the msg 0x0014 was expected, but got msg 0x0006 instead msg.c:15851: Test failed: DefWindowProcA(SC_RESTORE):overlapped: 32: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 3: the msg 0x000d was expected, but got msg 0x0086 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 7: the msg 0x0083 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 8: the msg 0x0003 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 9: the msg 0x0005 was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 10: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 15: the msg 0x000d was expected, but got msg 0x0014 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 20: the msg 0x0083 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 21: the msg 0x0085 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 22: the msg 0x0014 was expected, but got msg 0x0009 instead msg.c:15860: Test failed: DefWindowProcA(SC_RESTORE):active minimized overlapped: 26: the msg 0x0088 was expected, but got msg 0x000f instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 0: the msg 0x0008 was expected, but got msg 0x0215 instead msg.c:15883: Test failed: WM_NCRBUTTONDOWN on caption: 1: the msg 0x0009 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17789: Test failed: WmTrackPopupMenuAbort: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 5: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 11: the msg 0x000d was expected, but got msg 0x0046 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 18: the msg 0x000d was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 19: the msg 0x0083 was expected, but got msg 0x001f instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 27: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17802: Test failed: TrackPopupMenuMinimizeWindow: 28: the msg 0x000d was expected, but got msg 0x0006 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 6: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17814: Test failed: TrackPopupMenuCapture: 7: the msg 0x0094 was expected, but got msg 0x0121 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 4: the msg 0x0093 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 5: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:17839: Test failed: TrackPopupMenuEmpty: 6: the msg 0x0094 was expected, but got msg 0x0215 instead msg.c:14558: Test failed: SetForegroundWindow( desktop ) away from foreground top level window: 1: the msg 0x000d was expected, but got msg 0x0006 instead
Report validation errors: user32:msg prints too much data (186596 bytes)
Signed-off-by: Connor McAdams cmcadams@codeweavers.com --- dlls/user32/tests/msg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index d3f5c68a608..e8af0d8c6f9 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -13422,7 +13422,7 @@ static const struct message WmHide_3[] = { { WM_WINDOWPOSCHANGING, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { HCBT_SETFOCUS, hook|optional }, - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|optional, OBJID_CLIENT, 0 }, { 0 } }; static const struct message WmShowMinimized_1[] = { @@ -13438,7 +13438,7 @@ static const struct message WmShowMinimized_1[] = { static const struct message WmMinimize_1[] = { { HCBT_MINMAX, hook|lparam, 0, SW_MINIMIZE }, { HCBT_SETFOCUS, hook|optional }, /* win2000 doesn't send it */ - { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam, OBJID_CLIENT, 0 }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|optional, OBJID_CLIENT, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, { WM_MOVE, sent|defwinproc },
Signed-off-by: Connor McAdams cmcadams@codeweavers.com --- dlls/user32/tests/msg.c | 88 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 80 insertions(+), 8 deletions(-)
diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index e8af0d8c6f9..2b9517e3792 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -13299,15 +13299,20 @@ static void test_SetWindowRgn(void) static const struct message WmShowNormal[] = { { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { HCBT_ACTIVATE, hook }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, /* win2003 doesn't send it */ { HCBT_SETFOCUS, hook }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_hook_todo, OBJID_CLIENT, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* Win7 sends it, but Win8+ doesn't. */ { 0 } }; static const struct message WmShow[] = { { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { HCBT_ACTIVATE, hook|optional }, /* win2000 doesn't send it */ { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, /* win2000 doesn't send it */ { HCBT_SETFOCUS, hook|optional }, /* win2000 doesn't send it */ @@ -13317,17 +13322,24 @@ static const struct message WmShow[] = { static const struct message WmShowNoActivate_1[] = { { HCBT_MINMAX, hook|lparam, 0, SW_SHOWNOACTIVATE }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_STATECHANGED, 0, SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE|SWP_NOSIZE|SWP_NOMOVE }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_STATECHANGED, 0, SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE|SWP_NOSIZE|SWP_NOMOVE }, { WM_MOVE, sent|defwinproc|optional }, { WM_SIZE, sent|wparam|defwinproc, SIZE_RESTORED }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* Win7 seems to send this twice. */ { 0 } }; static const struct message WmShowNoActivate_2[] = { { HCBT_MINMAX, hook|lparam, 0, SW_SHOWNOACTIVATE }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED, 0, SWP_NOACTIVATE }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { HCBT_ACTIVATE, hook|optional }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|optional, 0, 0 }, /* Win7 sends this. */ { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, { HCBT_SETFOCUS, hook|optional }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|optional, OBJID_CLIENT, 0 }, /* Win7 sends this. */ { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED, 0, SWP_NOACTIVATE }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|wparam|defwinproc, SIZE_RESTORED }, @@ -13336,11 +13348,15 @@ static const struct message WmShowNoActivate_2[] = { { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, /* win2003 doesn't send it */ { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { HCBT_SETFOCUS, hook|optional }, /* win2003 doesn't send it */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* Win7 seems to send this twice. */ + { EVENT_SYSTEM_MINIMIZEEND, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { 0 } }; static const struct message WmShowNA_1[] = { { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { 0 } }; @@ -13353,18 +13369,25 @@ static const struct message WmShowNA_2[] = { static const struct message WmRestore_1[] = { { HCBT_MINMAX, hook|lparam, 0, SW_RESTORE }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { HCBT_ACTIVATE, hook|optional }, /* win2000 doesn't send it */ { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, /* win2000 doesn't send it */ { HCBT_SETFOCUS, hook|optional }, /* win2000 doesn't send it */ { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|wparam|defwinproc, SIZE_RESTORED }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* Win7 seems to send this twice. */ + { EVENT_SYSTEM_MINIMIZEEND, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { HCBT_SETFOCUS, hook|optional }, /* win2000 sends it */ + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|optional, OBJID_CLIENT, 0 }, { 0 } }; static const struct message WmRestore_2[] = { { WM_SHOWWINDOW, sent|wparam, 1 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { HCBT_ACTIVATE, hook|optional }, /* win2000 doesn't send it */ { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, /* win2000 doesn't send it */ { HCBT_SETFOCUS, hook|optional }, /* win2000 doesn't send it */ @@ -13375,13 +13398,19 @@ static const struct message WmRestore_3[] = { { HCBT_MINMAX, hook|lparam, 0, SW_RESTORE }, { WM_GETMINMAXINFO, sent }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { HCBT_ACTIVATE, hook|optional }, /* win2003 doesn't send it */ + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, /* win2003 doesn't send it */ { HCBT_SETFOCUS, hook|optional }, /* win2003 doesn't send it */ + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|winevent_hook_todo, OBJID_CLIENT, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|wparam|defwinproc, SIZE_MAXIMIZED }, { HCBT_SETFOCUS, hook|optional }, /* win2003 sends it */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* Win7 seems to send this twice. */ + { EVENT_SYSTEM_MINIMIZEEND, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { 0 } }; static const struct message WmRestore_4[] = { @@ -13390,6 +13419,8 @@ static const struct message WmRestore_4[] = { { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_FRAMECHANGED|SWP_STATECHANGED, 0, SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE|SWP_NOSIZE|SWP_NOMOVE }, { WM_MOVE, sent|defwinproc|optional }, { WM_SIZE, sent|wparam|defwinproc|optional, SIZE_RESTORED }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* Win7 seems to send this twice. */ { 0 } }; static const struct message WmRestore_5[] = { @@ -13400,19 +13431,24 @@ static const struct message WmRestore_5[] = { { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_FRAMECHANGED|SWP_STATECHANGED, 0, SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE|SWP_NOSIZE|SWP_NOMOVE }, { WM_MOVE, sent|defwinproc|optional }, { WM_SIZE, sent|wparam|defwinproc|optional, SIZE_RESTORED }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* Win7 seems to send this twice. */ { 0 } }; static const struct message WmHide_1[] = { { WM_SHOWWINDOW, sent|wparam, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE, 0, SWP_NOACTIVATE }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE, 0, SWP_NOACTIVATE }, { HCBT_ACTIVATE, hook|optional }, { HCBT_SETFOCUS, hook|optional }, /* win2000 sends it */ + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|optional, OBJID_CLIENT, 0 }, { 0 } }; static const struct message WmHide_2[] = { { WM_SHOWWINDOW, sent|wparam, 0 }, { WM_WINDOWPOSCHANGING, sent /*|wparam, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE*/ }, /* win2000 doesn't add SWP_NOACTIVATE */ + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent /*|wparam, SWP_HIDEWINDOW|SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE*/ }, /* win2000 doesn't add SWP_NOACTIVATE */ { HCBT_ACTIVATE, hook|optional }, { 0 } @@ -13420,6 +13456,7 @@ static const struct message WmHide_2[] = { static const struct message WmHide_3[] = { { WM_SHOWWINDOW, sent|wparam, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE }, + { EVENT_OBJECT_HIDE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_HIDEWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE }, { HCBT_SETFOCUS, hook|optional }, { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|optional, OBJID_CLIENT, 0 }, @@ -13428,11 +13465,16 @@ static const struct message WmHide_3[] = { static const struct message WmShowMinimized_1[] = { { HCBT_MINMAX, hook|lparam, 0, SW_SHOWMINIMIZED }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { HCBT_ACTIVATE, hook|optional }, /* win2000 doesn't send it */ { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, /* win2000 doesn't send it */ { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|wparam|lparam|defwinproc, SIZE_MINIMIZED, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* Win7 seems to send this twice. */ + { EVENT_SYSTEM_MINIMIZESTART, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { 0 } }; static const struct message WmMinimize_1[] = { @@ -13440,33 +13482,48 @@ static const struct message WmMinimize_1[] = { { HCBT_SETFOCUS, hook|optional }, /* win2000 doesn't send it */ { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|optional, OBJID_CLIENT, 0 }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|wparam|lparam|defwinproc, SIZE_MINIMIZED, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* Win7 seems to send this twice. */ + { EVENT_SYSTEM_MINIMIZESTART, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { 0 } }; static const struct message WmMinimize_2[] = { { HCBT_MINMAX, hook|lparam, 0, SW_MINIMIZE }, { HCBT_SETFOCUS, hook|optional }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED, 0, SWP_NOACTIVATE }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED, 0, SWP_NOACTIVATE }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|wparam|lparam|defwinproc, SIZE_MINIMIZED, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* Win7 seems to send this twice. */ + { EVENT_SYSTEM_MINIMIZESTART, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { 0 } }; static const struct message WmMinimize_3[] = { { HCBT_MINMAX, hook|lparam, 0, SW_MINIMIZE }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED, 0, SWP_NOACTIVATE }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { HCBT_ACTIVATE, hook|optional }, + { EVENT_SYSTEM_FOREGROUND, winevent_hook|wparam|lparam|optional, 0, 0 }, /* Sometimes sent on Win8/10. */ { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_NOACTIVATE|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED, 0, SWP_NOACTIVATE }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|wparam|lparam|defwinproc, SIZE_MINIMIZED, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* Win7 seems to send this twice. */ + { EVENT_SYSTEM_MINIMIZESTART, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { 0 } }; static const struct message WmShowMinNoActivate[] = { { HCBT_MINMAX, hook|lparam, 0, SW_SHOWMINNOACTIVE }, { WM_WINDOWPOSCHANGING, sent }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { WM_WINDOWPOSCHANGED, sent }, { WM_MOVE, sent|defwinproc|optional }, { WM_SIZE, sent|wparam|lparam|defwinproc|optional, SIZE_MINIMIZED, 0 }, @@ -13506,13 +13563,19 @@ static const struct message WmShowMaximized_1[] = { { HCBT_MINMAX, hook|lparam, 0, SW_SHOWMAXIMIZED }, { WM_GETMINMAXINFO, sent }, { WM_WINDOWPOSCHANGING, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, + { EVENT_OBJECT_SHOW, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { HCBT_ACTIVATE, hook|optional }, /* win2000 doesn't send it */ { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, /* win2000 doesn't send it */ { HCBT_SETFOCUS, hook|optional }, /* win2000 doesn't send it */ { WM_WINDOWPOSCHANGED, sent|wparam, SWP_SHOWWINDOW|SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|wparam|defwinproc, SIZE_MAXIMIZED }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* Win7 seems to send this twice. */ + { EVENT_SYSTEM_MINIMIZEEND, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { HCBT_SETFOCUS, hook|optional }, /* win2003 sends it */ + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|optional, OBJID_CLIENT, 0 }, { 0 } }; static const struct message WmShowMaximized_2[] = { @@ -13521,14 +13584,21 @@ static const struct message WmShowMaximized_2[] = { { WM_WINDOWPOSCHANGING, sent|optional }, { HCBT_ACTIVATE, hook|optional }, { WM_WINDOWPOSCHANGED, sent|optional }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|optional, 0, 0 }, { WM_MOVE, sent|optional }, /* Win9x doesn't send it */ { WM_SIZE, sent|wparam|optional, SIZE_MAXIMIZED }, /* Win9x doesn't send it */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* Win7 sends this. */ { WM_WINDOWPOSCHANGING, sent|optional }, { HCBT_SETFOCUS, hook|optional }, + { EVENT_OBJECT_REORDER, winevent_hook|wparam|lparam|optional, 0, 0 }, { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_FRAMECHANGED|SWP_NOCOPYBITS|SWP_STATECHANGED }, { WM_MOVE, sent|defwinproc }, { WM_SIZE, sent|wparam|defwinproc, SIZE_MAXIMIZED }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* Win7 seems to send this twice. */ + { EVENT_SYSTEM_MINIMIZEEND, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, { HCBT_SETFOCUS, hook|optional }, + { EVENT_OBJECT_FOCUS, winevent_hook|wparam|lparam|optional, OBJID_CLIENT, 0 }, { 0 } }; static const struct message WmShowMaximized_3[] = { @@ -13541,6 +13611,8 @@ static const struct message WmShowMaximized_3[] = { { WM_WINDOWPOSCHANGED, sent|wparam, SWP_FRAMECHANGED|SWP_STATECHANGED, 0, SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE|SWP_NOSIZE|SWP_NOMOVE }, { WM_MOVE, sent|defwinproc|optional }, { WM_SIZE, sent|wparam|defwinproc, SIZE_MAXIMIZED }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|winevent_hook_todo, 0, 0 }, + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* Win7 seems to send this twice. */ { 0 } };
@@ -18315,6 +18387,14 @@ START_TEST(msg) test_InSendMessage(); test_SetFocus(); test_SetParent(); + test_PostMessage(); + test_broadcast(); + test_ShowWindow(); + test_PeekMessage(); + test_PeekMessage2(); + test_PeekMessage3(); + test_WaitForInputIdle( test_argv[0] ); + test_scrollwindowex();
/* Fix message sequences before removing 4 lines below */ if (pUnhookWinEvent && hEvent_hook) @@ -18325,14 +18405,6 @@ START_TEST(msg) } hEvent_hook = 0;
- test_PostMessage(); - test_broadcast(); - test_ShowWindow(); - test_PeekMessage(); - test_PeekMessage2(); - test_PeekMessage3(); - test_WaitForInputIdle( test_argv[0] ); - test_scrollwindowex(); test_messages(); test_setwindowpos(); test_showwindow();
Hi,
While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check?
Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=96316
Your paranoid android.
=== w10pro64_he (64 bit report) ===
user32: msg.c:12605: Test failed: message time not advanced: f8c7 f8c7 msg.c:12606: Test failed: coords not changed: (101 101) (101 101) msg.c:12623: Test failed: message time not advanced: f8c7 f8c7 msg.c:12624: Test failed: coords not changed: (101 101) (101 101)
=== w10pro64_zh_CN (64 bit report) ===
user32: msg.c:12623: Test failed: message time not advanced: edda edda msg.c:12624: Test failed: coords not changed: (105 105) (105 105)
=== debiant2 (32 bit Chinese:China report) ===
user32: msg.c:14834: Test failed: bad time bdede39