On Mon Nov 3 08:33:51 2025 +0000, Rémi Bernon wrote:
In that case maybe going through a `NtUserMsgWaitForMultipleObjectsEx` call is the best option for now if we cannot get rid of the IM_SET_TEXT event.
Hm what about something like
``` while (macdrv_copy_event_from_queue(thread_data->queue, im_set_text_mask, &event)) { macdrv_handle_event(event); macdrv_release_event(event); } ```