diff options
Diffstat (limited to 'src/wrapped/wrappedgdk3.c')
| -rw-r--r-- | src/wrapped/wrappedgdk3.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wrapped/wrappedgdk3.c b/src/wrapped/wrappedgdk3.c index aea28c68..f5683288 100644 --- a/src/wrapped/wrappedgdk3.c +++ b/src/wrapped/wrappedgdk3.c @@ -171,6 +171,12 @@ EXPORT uint32_t my3_gdk_threads_add_idle_full(x64emu_t* emu, int priority, void* return my->gdk_threads_add_idle_full(priority, findGSourceFunc(f), data, findGDestroyNotifyFct(d)); } +EXPORT uint32_t my3_gdk_threads_add_timeout_full(x64emu_t* emu, int priotity, uint32_t interval, void* f, void* data, void* d) +{ + return my->gdk_threads_add_timeout_full(priotity, interval, findGSourceFunc(f), data, findGDestroyNotifyFct(d)); +} + + #define PRE_INIT \ if(box64_nogtk) \ return -1; |