diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-10-19 10:44:17 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-10-19 10:44:17 +0200 |
| commit | 58875dee132c569fb08af9822141c034f3d697ec (patch) | |
| tree | 9e0f1054634af72c293059f6482ac7465bb55935 | |
| parent | 57a6c5a8b91d02cf12ebc18964d09c9f49897024 (diff) | |
| download | box64-58875dee132c569fb08af9822141c034f3d697ec.tar.gz box64-58875dee132c569fb08af9822141c034f3d697ec.zip | |
[WRAPPER] Fixed one of waylandclient callback signature (for #3071)
| -rw-r--r-- | src/wrapped/wrappedwaylandclient.c | 6 |
1 files changed, 3 insertions, 3 deletions
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) \ { \ |