1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
|
#define _GNU_SOURCE /* See feature_test_macros(7) */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dlfcn.h>
#include "wrappedlibs.h"
#include "debug.h"
#include "wrapper.h"
#include "bridge.h"
#include "librarian/library_private.h"
#include "x64emu.h"
#include "emu/x64emu_private.h"
#include "callback.h"
#include "librarian.h"
#include "box64context.h"
#include "emu/x64emu_private.h"
#include "gtkclass.h"
const char* gdk3Name = "libgdk-3.so.0";
#define ALTNAME "libgdk-3.so"
#define LIBNAME gdk3
//#define ADDED_FUNCTIONS()
#include "generated/wrappedgdk3types.h"
#include "wrappercallback.h"
#define SUPER() \
GO(0) \
GO(1) \
GO(2) \
GO(3)
// GdkFilterFunc
#define GO(A) \
static uintptr_t my_filter_fct_##A = 0; \
static int my_filter_##A(void* xevent, void* event, void* data) \
{ \
return (int)RunFunctionFmt(my_filter_fct_##A, "ppp", xevent, event, data); \
}
SUPER()
#undef GO
static void* findFilterFct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_filter_fct_##A == (uintptr_t)fct) return my_filter_##A;
SUPER()
#undef GO
#define GO(A) if(my_filter_fct_##A == 0) {my_filter_fct_##A = (uintptr_t)fct; return my_filter_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for gdk-3 GdkFilterFunc callback\n");
return NULL;
}
// GSourceFunc
#define GO(A) \
static uintptr_t my_GSourceFunc_fct_##A = 0; \
static int my_GSourceFunc_##A(void* a) \
{ \
return (int)RunFunctionFmt(my_GSourceFunc_fct_##A, "p", a); \
}
SUPER()
#undef GO
static void* findGSourceFunc(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_GSourceFunc_fct_##A == (uintptr_t)fct) return my_GSourceFunc_##A;
SUPER()
#undef GO
#define GO(A) if(my_GSourceFunc_fct_##A == 0) {my_GSourceFunc_fct_##A = (uintptr_t)fct; return my_GSourceFunc_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for gdk-3 GSourceFunc callback\n");
return NULL;
}
// GDestroyNotify
#define GO(A) \
static uintptr_t my_GDestroyNotify_fct_##A = 0; \
static void my_GDestroyNotify_##A(void* data) \
{ \
RunFunctionFmt(my_GDestroyNotify_fct_##A, "p", data); \
}
SUPER()
#undef GO
static void* findGDestroyNotifyFct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_GDestroyNotify_fct_##A == (uintptr_t)fct) return my_GDestroyNotify_##A;
SUPER()
#undef GO
#define GO(A) if(my_GDestroyNotify_fct_##A == 0) {my_GDestroyNotify_fct_##A = (uintptr_t)fct; return my_GDestroyNotify_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for gdk-3 GDestroyNotify callback\n");
return NULL;
}
// GCallback (generic function with 6 arguments, hopefully it's enough)
#define GO(A) \
static uintptr_t my_GCallback_fct_##A = 0; \
static void* my_GCallback_##A(void* a, void* b, void* c, void* d) \
{ \
return (void*)RunFunctionFmt(my_GCallback_fct_##A, "pppp", a, b, c, d); \
}
SUPER()
#undef GO
static void* findGCallbackFct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_GCallback_fct_##A == (uintptr_t)fct) return my_GCallback_##A;
SUPER()
#undef GO
#define GO(A) if(my_GCallback_fct_##A == 0) {my_GCallback_fct_##A = (uintptr_t)fct; return my_GCallback_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for gdk3 generic GCallback\n");
return NULL;
}
// EventHandler
#define GO(A) \
static uintptr_t my_EventHandler_fct_##A = 0; \
static void* my_EventHandler_##A(void* a, void* b, void* c, void* d, void* e) \
{ \
return (void*)RunFunctionFmt(my_EventHandler_fct_##A, "ppppp", a, b, c, d, e); \
}
SUPER()
#undef GO
static void* findEventHandlerFct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_EventHandler_fct_##A == (uintptr_t)fct) return my_EventHandler_##A;
SUPER()
#undef GO
#define GO(A) if(my_EventHandler_fct_##A == 0) {my_EventHandler_fct_##A = (uintptr_t)fct; return my_EventHandler_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for gdk3 generic EventHandler\n");
return NULL;
}
#undef SUPER
EXPORT void my3_gdk_event_handler_set(x64emu_t* emu, void* func, void* data, void* notify)
{
return my->gdk_event_handler_set(findEventHandlerFct(func), data, findGDestroyNotifyFct(notify));
}
EXPORT void my3_gdk_init(x64emu_t* emu, void* argc, void* argv)
{
my->gdk_init(argc, argv);
my_checkGlobalGdkDisplay();
}
EXPORT int my3_gdk_init_check(x64emu_t* emu, void* argc, void* argv)
{
int ret = my->gdk_init_check(argc, argv);
my_checkGlobalGdkDisplay();
return ret;
}
EXPORT void my3_gdk_window_add_filter(x64emu_t* emu, void* window, void* f, void* data)
{
my->gdk_window_add_filter(window, findFilterFct(f), data);
}
EXPORT void my3_gdk_window_remove_filter(x64emu_t* emu, void* window, void* f, void* data)
{
my->gdk_window_remove_filter(window, findFilterFct(f), data);
}
EXPORT uint32_t my3_gdk_threads_add_idle_full(x64emu_t* emu, int priority, void* f, void* data, void* d)
{
return my->gdk_threads_add_idle_full(priority, findGSourceFunc(f), data, findGDestroyNotifyFct(d));
}
EXPORT uint32_t my3_gdk_threads_add_idle(x64emu_t* emu, void* f, void* data)
{
return my->gdk_threads_add_idle(findGSourceFunc(f), data);
}
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));
}
EXPORT void my3_gdk_threads_set_lock_functions(x64emu_t* emu, void* enter_fn, void* leave_fn)
{
my->gdk_threads_set_lock_functions(findGCallbackFct(enter_fn), findGCallbackFct(leave_fn));
}
#define PRE_INIT \
if(BOX64ENV(nogtk)) \
return -1;
#define ALTMY my3_
#define NEEDED_LIBS "libgobject-2.0.so.0", "libgio-2.0.so.0", "libgdk_pixbuf-2.0.so.0"
#include "wrappedlib_init.h"
|