diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-10-29 22:40:57 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-10-29 22:40:57 +0200 |
| commit | dbdfc13a2327a569af167d68d12b433a74154b48 (patch) | |
| tree | 92d944fd4dff4e1a6aef751ee2c033e93e9306bc /src/wrapped/generated/wrapper.c | |
| parent | c19730f5e282b060664fa052b7023d84dd759f2c (diff) | |
| download | box64-dbdfc13a2327a569af167d68d12b433a74154b48.tar.gz box64-dbdfc13a2327a569af167d68d12b433a74154b48.zip | |
Fixed a signature in tbbmallocproxy wrapped lib
Diffstat (limited to 'src/wrapped/generated/wrapper.c')
| -rw-r--r-- | src/wrapped/generated/wrapper.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/wrapped/generated/wrapper.c b/src/wrapped/generated/wrapper.c index 5a65456b..56986195 100644 --- a/src/wrapped/generated/wrapper.c +++ b/src/wrapped/generated/wrapper.c @@ -43,7 +43,6 @@ typedef void (*vFl_t)(intptr_t); typedef void (*vFL_t)(uintptr_t); typedef void (*vFp_t)(void*); typedef void (*vFS_t)(void*); -typedef void (*vFP_t)(void*); typedef int8_t (*cFv_t)(void); typedef int8_t (*cFi_t)(int64_t); typedef int8_t (*cFu_t)(uint64_t); @@ -2239,7 +2238,6 @@ void vFl(x64emu_t *emu, uintptr_t fcn) { vFl_t fn = (vFl_t)fcn; fn((intptr_t)R_R void vFL(x64emu_t *emu, uintptr_t fcn) { vFL_t fn = (vFL_t)fcn; fn((uintptr_t)R_RDI); } void vFp(x64emu_t *emu, uintptr_t fcn) { vFp_t fn = (vFp_t)fcn; fn((void*)R_RDI); } void vFS(x64emu_t *emu, uintptr_t fcn) { vFS_t fn = (vFS_t)fcn; fn(io_convert((void*)R_RDI)); } -void vFP(x64emu_t *emu, uintptr_t fcn) { vFP_t fn = (vFP_t)fcn; fn(*(void**)(R_RSP + 8)); } void cFv(x64emu_t *emu, uintptr_t fcn) { cFv_t fn = (cFv_t)fcn; R_RAX=fn(); } void cFi(x64emu_t *emu, uintptr_t fcn) { cFi_t fn = (cFi_t)fcn; R_RAX=fn((int64_t)R_RDI); } void cFu(x64emu_t *emu, uintptr_t fcn) { cFu_t fn = (cFu_t)fcn; R_RAX=fn((uint64_t)R_RDI); } |