1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-26 13:02:25 +00:00

win32u: Move WM_WINE_DESKTOP_RESIZED into driver internal messages range.

It is otherwise ignored and not passed to the drivers WindowMessage callback.

Fixes: b89c9c60d5
This commit is contained in:
Rémi Bernon 2024-06-13 10:35:15 +02:00 committed by Alexandre Julliard
parent c7287cc734
commit 6eac284201

View File

@ -504,10 +504,10 @@ enum wine_internal_message
WM_WINE_KEYBOARD_LL_HOOK,
WM_WINE_MOUSE_LL_HOOK,
WM_WINE_UPDATEWINDOWSTATE,
WM_WINE_DESKTOP_RESIZED,
WM_WINE_FIRST_DRIVER_MSG = 0x80001000, /* range of messages reserved for the USER driver */
WM_WINE_CLIPCURSOR = 0x80001ff0, /* internal driver notification messages */
WM_WINE_SETCURSOR,
WM_WINE_DESKTOP_RESIZED,
WM_WINE_LAST_DRIVER_MSG = 0x80001fff
};