Module: wine Branch: master Commit: 1dc8cdae25cf42cceae04274688f4ed1260fe14b URL: https://gitlab.winehq.org/wine/wine/-/commit/1dc8cdae25cf42cceae04274688f4ed...
Author: Esme Povirk esme@codeweavers.com Date: Fri Jul 28 11:35:23 2023 -0500
user32/tests: Add optional message sequence from win7.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=55354
---
dlls/user32/tests/msg.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index 23957a7adf8..7d1f796e53f 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -15194,6 +15194,9 @@ static const struct message WmCreateDialogParamSeq_1[] = { { WM_PALETTEISCHANGING, sent|optional }, { WM_WINDOWPOSCHANGING, sent|wparam|optional, SWP_NOSIZE|SWP_NOMOVE }, { WM_WINDOWPOSCHANGED, sent|wparam|optional, SWP_NOMOVE|SWP_NOSIZE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE|SWP_NOREDRAW }, + { WM_GETTEXT, sent|optional }, /* win7 */ + { WM_NCCALCSIZE, sent|optional }, /* win7 */ + { EVENT_OBJECT_LOCATIONCHANGE, winevent_hook|wparam|lparam|optional, 0, 0 }, /* win7 */ { WM_ACTIVATEAPP, sent|wparam, 1 }, { WM_NCACTIVATE, sent }, { WM_ACTIVATE, sent|wparam, 1 },