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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define _GNU_SOURCE /* See feature_test_macros(7) */
#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 "myalign.h"
const char* faudioName = "libFAudio.so.0";
#define LIBNAME faudio
#include "generated/wrappedfaudiotypes.h"
#include "wrappercallback.h"
#define SUPER() \
GO(0) \
GO(1) \
GO(2) \
GO(3) \
GO(4)
// FAudioMalloc ...
#define GO(A) \
static uintptr_t my_FAudioMalloc_fct_##A = 0; \
static void* my_FAudioMalloc_##A(size_t a) \
{ \
return (void*)RunFunctionFmt(my_FAudioMalloc_fct_##A, "L", a); \
}
SUPER()
#undef GO
static void* find_FAudioMalloc_Fct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_FAudioMalloc_fct_##A == (uintptr_t)fct) return my_FAudioMalloc_##A;
SUPER()
#undef GO
#define GO(A) if(my_FAudioMalloc_fct_##A == 0) {my_FAudioMalloc_fct_##A = (uintptr_t)fct; return my_FAudioMalloc_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for FAudio FAudioMalloc callback\n");
return NULL;
}
// FAudioFree ...
#define GO(A) \
static uintptr_t my_FAudioFree_fct_##A = 0; \
static void my_FAudioFree_##A(void* a) \
{ \
RunFunctionFmt(my_FAudioFree_fct_##A, "p", a); \
}
SUPER()
#undef GO
static void* find_FAudioFree_Fct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_FAudioFree_fct_##A == (uintptr_t)fct) return my_FAudioFree_##A;
SUPER()
#undef GO
#define GO(A) if(my_FAudioFree_fct_##A == 0) {my_FAudioFree_fct_##A = (uintptr_t)fct; return my_FAudioFree_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for FAudio FAudioFree callback\n");
return NULL;
}
// FAudioRealloc ...
#define GO(A) \
static uintptr_t my_FAudioRealloc_fct_##A = 0; \
static void* my_FAudioRealloc_##A(void* a, size_t b) \
{ \
return (void*)RunFunctionFmt(my_FAudioRealloc_fct_##A, "pL", a, b); \
}
SUPER()
#undef GO
static void* find_FAudioRealloc_Fct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_FAudioRealloc_fct_##A == (uintptr_t)fct) return my_FAudioRealloc_##A;
SUPER()
#undef GO
#define GO(A) if(my_FAudioRealloc_fct_##A == 0) {my_FAudioRealloc_fct_##A = (uintptr_t)fct; return my_FAudioRealloc_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for FAudio FAudioRealloc callback\n");
return NULL;
}
// OnCriticalErrorFunc ...
#define GO(A) \
static uintptr_t my_OnCriticalErrorFunc_fct_##A = 0; \
static void my_OnCriticalErrorFunc_##A(void* a, uint32_t b) \
{ \
RunFunctionFmt(my_OnCriticalErrorFunc_fct_##A, "pu", a, b); \
}
SUPER()
#undef GO
static void* find_OnCriticalErrorFunc_Fct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_OnCriticalErrorFunc_fct_##A == (uintptr_t)fct) return my_OnCriticalErrorFunc_##A;
SUPER()
#undef GO
#define GO(A) if(my_OnCriticalErrorFunc_fct_##A == 0) {my_OnCriticalErrorFunc_fct_##A = (uintptr_t)fct; return my_OnCriticalErrorFunc_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for FAudio OnCriticalErrorFunc callback\n");
return NULL;
}
// OnProcessingPassEndFunc ...
#define GO(A) \
static uintptr_t my_OnProcessingPassEndFunc_fct_##A = 0; \
static void my_OnProcessingPassEndFunc_##A(void* a) \
{ \
RunFunctionFmt(my_OnProcessingPassEndFunc_fct_##A, "p", a); \
}
SUPER()
#undef GO
static void* find_OnProcessingPassEndFunc_Fct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_OnProcessingPassEndFunc_fct_##A == (uintptr_t)fct) return my_OnProcessingPassEndFunc_##A;
SUPER()
#undef GO
#define GO(A) if(my_OnProcessingPassEndFunc_fct_##A == 0) {my_OnProcessingPassEndFunc_fct_##A = (uintptr_t)fct; return my_OnProcessingPassEndFunc_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for FAudio OnProcessingPassEndFunc callback\n");
return NULL;
}
// OnProcessingPassStartFunc ...
#define GO(A) \
static uintptr_t my_OnProcessingPassStartFunc_fct_##A = 0; \
static void my_OnProcessingPassStartFunc_##A(void* a) \
{ \
RunFunctionFmt(my_OnProcessingPassStartFunc_fct_##A, "p", a); \
}
SUPER()
#undef GO
static void* find_OnProcessingPassStartFunc_Fct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_OnProcessingPassStartFunc_fct_##A == (uintptr_t)fct) return my_OnProcessingPassStartFunc_##A;
SUPER()
#undef GO
#define GO(A) if(my_OnProcessingPassStartFunc_fct_##A == 0) {my_OnProcessingPassStartFunc_fct_##A = (uintptr_t)fct; return my_OnProcessingPassStartFunc_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for FAudio OnProcessingPassStartFunc callback\n");
return NULL;
}
typedef struct my_FAudioEngineCallback_s
{
void* OnCriticalError;
void* OnProcessingPassEnd;
void* OnProcessingPassStart;
} my_FAudioEngineCallback_t;
// OnBufferEndFunc ...
#define GO(A) \
static uintptr_t my_OnBufferEndFunc_fct_##A = 0; \
static void my_OnBufferEndFunc_##A(void* a, void* b) \
{ \
RunFunctionFmt(my_OnBufferEndFunc_fct_##A, "pp", a, b); \
}
SUPER()
#undef GO
static void* find_OnBufferEndFunc_Fct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_OnBufferEndFunc_fct_##A == (uintptr_t)fct) return my_OnBufferEndFunc_##A;
SUPER()
#undef GO
#define GO(A) if(my_OnBufferEndFunc_fct_##A == 0) {my_OnBufferEndFunc_fct_##A = (uintptr_t)fct; return my_OnBufferEndFunc_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for FAudio OnBufferEndFunc callback\n");
return NULL;
}
// OnBufferStartFunc ...
#define GO(A) \
static uintptr_t my_OnBufferStartFunc_fct_##A = 0; \
static void my_OnBufferStartFunc_##A(void* a, void* b) \
{ \
RunFunctionFmt(my_OnBufferStartFunc_fct_##A, "pp", a, b); \
}
SUPER()
#undef GO
static void* find_OnBufferStartFunc_Fct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_OnBufferStartFunc_fct_##A == (uintptr_t)fct) return my_OnBufferStartFunc_##A;
SUPER()
#undef GO
#define GO(A) if(my_OnBufferStartFunc_fct_##A == 0) {my_OnBufferStartFunc_fct_##A = (uintptr_t)fct; return my_OnBufferStartFunc_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for FAudio OnBufferStartFunc callback\n");
return NULL;
}
// OnLoopEndFunc ...
#define GO(A) \
static uintptr_t my_OnLoopEndFunc_fct_##A = 0; \
static void my_OnLoopEndFunc_##A(void* a, void* b) \
{ \
RunFunctionFmt(my_OnLoopEndFunc_fct_##A, "pp", a, b); \
}
SUPER()
#undef GO
static void* find_OnLoopEndFunc_Fct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_OnLoopEndFunc_fct_##A == (uintptr_t)fct) return my_OnLoopEndFunc_##A;
SUPER()
#undef GO
#define GO(A) if(my_OnLoopEndFunc_fct_##A == 0) {my_OnLoopEndFunc_fct_##A = (uintptr_t)fct; return my_OnLoopEndFunc_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for FAudio OnLoopEndFunc callback\n");
return NULL;
}
// OnStreamEndFunc ...
#define GO(A) \
static uintptr_t my_OnStreamEndFunc_fct_##A = 0; \
static void my_OnStreamEndFunc_##A(void* a) \
{ \
RunFunctionFmt(my_OnStreamEndFunc_fct_##A, "p", a); \
}
SUPER()
#undef GO
static void* find_OnStreamEndFunc_Fct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_OnStreamEndFunc_fct_##A == (uintptr_t)fct) return my_OnStreamEndFunc_##A;
SUPER()
#undef GO
#define GO(A) if(my_OnStreamEndFunc_fct_##A == 0) {my_OnStreamEndFunc_fct_##A = (uintptr_t)fct; return my_OnStreamEndFunc_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for FAudio OnStreamEndFunc callback\n");
return NULL;
}
// OnVoiceErrorFunc ...
#define GO(A) \
static uintptr_t my_OnVoiceErrorFunc_fct_##A = 0; \
static void my_OnVoiceErrorFunc_##A(void* a, void* b, uint32_t c) \
{ \
RunFunctionFmt(my_OnVoiceErrorFunc_fct_##A, "ppu", a, b, c); \
}
SUPER()
#undef GO
static void* find_OnVoiceErrorFunc_Fct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_OnVoiceErrorFunc_fct_##A == (uintptr_t)fct) return my_OnVoiceErrorFunc_##A;
SUPER()
#undef GO
#define GO(A) if(my_OnVoiceErrorFunc_fct_##A == 0) {my_OnVoiceErrorFunc_fct_##A = (uintptr_t)fct; return my_OnVoiceErrorFunc_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for FAudio OnVoiceErrorFunc callback\n");
return NULL;
}
// OnVoiceProcessingPassEndFunc ...
#define GO(A) \
static uintptr_t my_OnVoiceProcessingPassEndFunc_fct_##A = 0; \
static void my_OnVoiceProcessingPassEndFunc_##A(void* a) \
{ \
RunFunctionFmt(my_OnVoiceProcessingPassEndFunc_fct_##A, "p", a); \
}
SUPER()
#undef GO
static void* find_OnVoiceProcessingPassEndFunc_Fct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_OnVoiceProcessingPassEndFunc_fct_##A == (uintptr_t)fct) return my_OnVoiceProcessingPassEndFunc_##A;
SUPER()
#undef GO
#define GO(A) if(my_OnVoiceProcessingPassEndFunc_fct_##A == 0) {my_OnVoiceProcessingPassEndFunc_fct_##A = (uintptr_t)fct; return my_OnVoiceProcessingPassEndFunc_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for FAudio OnVoiceProcessingPassEndFunc callback\n");
return NULL;
}
// OnVoiceProcessingPassStartFunc ...
#define GO(A) \
static uintptr_t my_OnVoiceProcessingPassStartFunc_fct_##A = 0; \
static void my_OnVoiceProcessingPassStartFunc_##A(void* a, uint32_t b) \
{ \
RunFunctionFmt(my_OnVoiceProcessingPassStartFunc_fct_##A, "pu", a, b); \
}
SUPER()
#undef GO
static void* find_OnVoiceProcessingPassStartFunc_Fct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_OnVoiceProcessingPassStartFunc_fct_##A == (uintptr_t)fct) return my_OnVoiceProcessingPassStartFunc_##A;
SUPER()
#undef GO
#define GO(A) if(my_OnVoiceProcessingPassStartFunc_fct_##A == 0) {my_OnVoiceProcessingPassStartFunc_fct_##A = (uintptr_t)fct; return my_OnVoiceProcessingPassStartFunc_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for FAudio OnVoiceProcessingPassStartFunc callback\n");
return NULL;
}
typedef struct my_FAudioVoiceCallback_s
{
void* OnBufferEnd;
void* OnBufferStart;
void* OnLoopEnd;
void* OnStreamEnd;
void* OnVoiceError;
void* OnVoiceProcessingPassEnd;
void* OnVoiceProcessingPassStart;
} my_FAudioVoiceCallback_t;
// FAudioEngineCallEXT ...
#define GO(A) \
static uintptr_t my_FAudioEngineCallEXT_fct_##A = 0; \
static void my_FAudioEngineCallEXT_##A(void* a, void* b) \
{ \
RunFunctionFmt(my_FAudioEngineCallEXT_fct_##A, "pp", a, b); \
}
SUPER()
#undef GO
static void* find_FAudioEngineCallEXT_Fct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_FAudioEngineCallEXT_fct_##A == (uintptr_t)fct) return my_FAudioEngineCallEXT_##A;
SUPER()
#undef GO
#define GO(A) if(my_FAudioEngineCallEXT_fct_##A == 0) {my_FAudioEngineCallEXT_fct_##A = (uintptr_t)fct; return my_FAudioEngineCallEXT_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for FAudio FAudioEngineCallEXT callback\n");
return NULL;
}
// FAudioEngineProcedureEXT ...
#define GO(A) \
static uintptr_t my_FAudioEngineProcedureEXT_fct_##A = 0; \
static void my_FAudioEngineProcedureEXT_##A(void* a, void* b, void* c, void* d) \
{ \
RunFunctionFmt(my_FAudioEngineProcedureEXT_fct_##A, "pppp", find_FAudioEngineCallEXT_Fct(a), b, c, d); \
}
SUPER()
#undef GO
static void* find_FAudioEngineProcedureEXT_Fct(void* fct)
{
if(!fct) return fct;
if(GetNativeFnc((uintptr_t)fct)) return GetNativeFnc((uintptr_t)fct);
#define GO(A) if(my_FAudioEngineProcedureEXT_fct_##A == (uintptr_t)fct) return my_FAudioEngineProcedureEXT_##A;
SUPER()
#undef GO
#define GO(A) if(my_FAudioEngineProcedureEXT_fct_##A == 0) {my_FAudioEngineProcedureEXT_fct_##A = (uintptr_t)fct; return my_FAudioEngineProcedureEXT_##A; }
SUPER()
#undef GO
printf_log(LOG_NONE, "Warning, no more slot for FAudio FAudioEngineProcedureEXT callback\n");
return NULL;
}
#undef SUPER
static void wrapFAudioEngineCallback(my_FAudioEngineCallback_t* src, my_FAudioEngineCallback_t* dst)
{
dst->OnCriticalError = find_OnCriticalErrorFunc_Fct(src->OnCriticalError);
dst->OnProcessingPassStart = find_OnProcessingPassStartFunc_Fct(src->OnProcessingPassStart);
dst->OnProcessingPassEnd = find_OnProcessingPassEndFunc_Fct(src->OnProcessingPassEnd);
}
static void wrapFAudioVoiceCallback(my_FAudioVoiceCallback_t* src, my_FAudioVoiceCallback_t* dst)
{
dst->OnBufferEnd = find_OnBufferEndFunc_Fct(src->OnBufferEnd);
dst->OnBufferStart = find_OnBufferStartFunc_Fct(src->OnBufferStart);
dst->OnLoopEnd = find_OnLoopEndFunc_Fct(src->OnLoopEnd);
dst->OnStreamEnd = find_OnStreamEndFunc_Fct(src->OnStreamEnd);
dst->OnVoiceError = find_OnVoiceErrorFunc_Fct(src->OnVoiceError);
dst->OnVoiceProcessingPassEnd = find_OnVoiceProcessingPassEndFunc_Fct(src->OnVoiceProcessingPassEnd);
dst->OnVoiceProcessingPassStart = find_OnVoiceProcessingPassStartFunc_Fct(src->OnVoiceProcessingPassStart);
}
EXPORT uint32_t my_FAudioCreateVolumeMeterWithCustomAllocatorEXT(x64emu_t* emu, void* ppApo, uint32_t flags, void* customMalloc, void* customFree, void* customRealloc) {
return my->FAudioCreateVolumeMeterWithCustomAllocatorEXT(ppApo, flags, find_FAudioMalloc_Fct(customMalloc), find_FAudioFree_Fct(customFree), find_FAudioRealloc_Fct(customRealloc));
}
EXPORT uint32_t my_FAudioCreateReverbWithCustomAllocatorEXT(x64emu_t* emu, void* ppApo, uint32_t flags, void* customMalloc, void* customFree, void* customRealloc) {
return my->FAudioCreateReverbWithCustomAllocatorEXT(ppApo, flags, find_FAudioMalloc_Fct(customMalloc), find_FAudioFree_Fct(customFree), find_FAudioRealloc_Fct(customRealloc));
}
EXPORT uint32_t my_FAudioCreateReverb9WithCustomAllocatorEXT(x64emu_t* emu, void* ppApo, uint32_t flags, void* customMalloc, void* customFree, void* customRealloc) {
return my->FAudioCreateReverb9WithCustomAllocatorEXT(ppApo, flags, find_FAudioMalloc_Fct(customMalloc), find_FAudioFree_Fct(customFree), find_FAudioRealloc_Fct(customRealloc));
}
EXPORT uint32_t my_FAudio_RegisterForCallbacks(x64emu_t* emu, void* audio, my_FAudioEngineCallback_t* p) {
my_FAudioEngineCallback_t cb = {0};
wrapFAudioEngineCallback(p, &cb);
return my->FAudio_RegisterForCallbacks(audio, &cb);
}
EXPORT void my_FAudio_UnregisterForCallbacks(x64emu_t* emu, void* audio, my_FAudioEngineCallback_t* p) {
my_FAudioEngineCallback_t cb = {0};
wrapFAudioEngineCallback(p, &cb);
my->FAudio_UnregisterForCallbacks(audio, &cb);
}
EXPORT uint32_t my_FAudio_CreateSourceVoice(x64emu_t* emu, void* audio, void* voices, void* format, uint32_t flags, float ratio, my_FAudioVoiceCallback_t* p, void* send, void* effect) {
my_FAudioVoiceCallback_t cb = {0};
if(p)
wrapFAudioVoiceCallback(p, &cb);
return my->FAudio_CreateSourceVoice(audio, voices, format, flags, ratio, p?(&cb):NULL, send, effect);
}
EXPORT uint32_t my_FAudioCreateWithCustomAllocatorEXT(x64emu_t* emu, void* pp, uint32_t flags, uint32_t proc, void* customMalloc, void* customFree, void* customRealloc) {
return my->FAudioCreateWithCustomAllocatorEXT(pp, flags, proc, find_FAudioMalloc_Fct(customMalloc), find_FAudioFree_Fct(customFree), find_FAudioRealloc_Fct(customRealloc));
}
EXPORT uint32_t my_FAudioCOMConstructWithCustomAllocatorEXT(x64emu_t* emu, void* pp, uint8_t ver,void* customMalloc, void* customFree, void* customRealloc) {
return my->FAudioCOMConstructWithCustomAllocatorEXT(pp, ver, find_FAudioMalloc_Fct(customMalloc), find_FAudioFree_Fct(customFree), find_FAudioRealloc_Fct(customRealloc));
}
EXPORT void my_FAudio_SetEngineProcedureEXT(x64emu_t* emu, void* audio, void* p, void* user) {
my->FAudio_SetEngineProcedureEXT(audio, find_FAudioEngineProcedureEXT_Fct(p), user);
}
EXPORT uint32_t my_FAPOFX_CreateFXWithCustomAllocatorEXT(x64emu_t* emu, void* clsid, void* p, void* data, uint32_t size, void* customMalloc, void* customFree, void* customRealloc) {
return my->FAPOFX_CreateFXWithCustomAllocatorEXT(clsid, p, data, size, find_FAudioMalloc_Fct(customMalloc), find_FAudioFree_Fct(customFree), find_FAudioRealloc_Fct(customRealloc));
}
#include "wrappedlib_init.h"
|