Re: [PATCH v2 0/2] MR4726: server: Always release internal hardware messages
21 Dec
2023
21 Dec
'23
9:31 a.m.
Rémi Bernon (@rbernon) commented about server/queue.c:
} }
+/* is this message an internal driver notification message */ +static inline BOOL is_internal_hardware_message( unsigned int message ) +{ + return (message >= WM_WINE_CLIPCURSOR && message <= WM_WINE_LAST_DRIVER_MSG);
I'd use the same range that's used for peeking the messages: ```suggestion:-0+0 return (message >= WM_WINE_FIRST_DRIVER_MSG && message <= WM_WINE_LAST_DRIVER_MSG); ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/4726#note_56342
805
Age (days ago)
805
Last active (days ago)
0 comments
1 participants
participants (1)
-
Rémi Bernon