about summary refs log tree commit diff stats
path: root/src/wrapped/wrappedgtk3.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wrapped/wrappedgtk3.c')
-rw-r--r--src/wrapped/wrappedgtk3.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wrapped/wrappedgtk3.c b/src/wrapped/wrappedgtk3.c
index 929e60f0..35cea840 100644
--- a/src/wrapped/wrappedgtk3.c
+++ b/src/wrapped/wrappedgtk3.c
@@ -758,6 +758,12 @@ EXPORT void my3_gtk_clipboard_request_text(x64emu_t* emu, void* clipboard, void*
     my->gtk_clipboard_request_text(clipboard, findGtkClipboardTextReceivedFuncFct(f), data);
 }
 
+EXPORT void my3_gtk_style_context_get(x64emu_t* emu, void* context, uint32_t flags, uintptr_t* b)
+{
+    CREATE_VALIST_FROM_VAARG(b, emu->scratch, 2);
+    my->gtk_style_context_get_valist(context, flags, VARARGS);
+}
+
 #define PRE_INIT    \
     if(box64_nogtk) \
         return -1;