From 58875dee132c569fb08af9822141c034f3d697ec Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sun, 19 Oct 2025 10:44:17 +0200 Subject: [WRAPPER] Fixed one of waylandclient callback signature (for #3071) --- src/wrapped/wrappedwaylandclient.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/wrapped/wrappedwaylandclient.c b/src/wrapped/wrappedwaylandclient.c index 8c03eb24..ad6b61b7 100644 --- a/src/wrapped/wrappedwaylandclient.c +++ b/src/wrapped/wrappedwaylandclient.c @@ -407,7 +407,7 @@ static void* find_wl_pointer_listener_Fct(void* fct) // wl_keyboard_listener ... typedef struct my_wl_keyboard_listener_s { uintptr_t keymap; //vFppuiu - uintptr_t enter; //vFppup + uintptr_t enter; //vFppupp uintptr_t leave; //vFppup uintptr_t key; //vFppuuuuu uintptr_t modifiers; //vFppuuuuu @@ -419,9 +419,9 @@ static void my_wl_keyboard_listener_keymap_##A(void* a, void* b, uint32_t c, int { \ RunFunctionFmt(ref_wl_keyboard_listener_##A->keymap, "ppuiu", a, b, c, d, e); \ } \ -static void my_wl_keyboard_listener_enter_##A(void* a, void* b, uint32_t c, void* d) \ +static void my_wl_keyboard_listener_enter_##A(void* a, void* b, uint32_t c, void* d, void* e) \ { \ - RunFunctionFmt(ref_wl_keyboard_listener_##A->enter, "ppup", a, b, c, d); \ + RunFunctionFmt(ref_wl_keyboard_listener_##A->enter, "ppupp", a, b, c, d, e); \ } \ static void my_wl_keyboard_listener_leave_##A(void* a, void* b, uint32_t c, void* d) \ { \ -- cgit 1.4.1