Rémi Bernon : win32u: Move WM_WINE_DESKTOP_RESIZED into driver internal messages range.
Module: wine Branch: master Commit: 6eac284201b4f8b2ecf78ad5623bf0fcebcd57bb URL: https://gitlab.winehq.org/wine/wine/-/commit/6eac284201b4f8b2ecf78ad5623bf0f... Author: Rémi Bernon <rbernon(a)codeweavers.com> Date: Thu Jun 13 10:35:15 2024 +0200 win32u: Move WM_WINE_DESKTOP_RESIZED into driver internal messages range. It is otherwise ignored and not passed to the drivers WindowMessage callback. Fixes: b89c9c60d50cf21650331d1528ff965c319a1217 --- include/ntuser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ntuser.h b/include/ntuser.h index 10afabfdc60..bd11567290f 100644 --- a/include/ntuser.h +++ b/include/ntuser.h @@ -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 };
participants (1)
-
Alexandre Julliard