diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2025-06-12 16:45:11 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-12 10:45:11 +0200 |
| commit | 9cacc441255e86be21f0eef3e1706a1bb915e275 (patch) | |
| tree | 308e99a23902b8ae2de7b386f9a7330a6d0f2625 /src/wrapped/generated/wrapper.c | |
| parent | 3f757df0288d122cce8fedd885a989d429566a44 (diff) | |
| download | box64-9cacc441255e86be21f0eef3e1706a1bb915e275.tar.gz box64-9cacc441255e86be21f0eef3e1706a1bb915e275.zip | |
[WRAPPER] Added 2 more functions to libc (for #2731) (#2733)
Diffstat (limited to 'src/wrapped/generated/wrapper.c')
| -rw-r--r-- | src/wrapped/generated/wrapper.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wrapped/generated/wrapper.c b/src/wrapped/generated/wrapper.c index b125a47b..b72e2e39 100644 --- a/src/wrapped/generated/wrapper.c +++ b/src/wrapped/generated/wrapper.c @@ -3572,6 +3572,7 @@ typedef int32_t (*iFEipipp_t)(x64emu_t*, int32_t, void*, int32_t, void*, void*); #if !defined(STATICBUILD) typedef intptr_t (*lFiN_t)(int32_t, ...); +typedef int32_t (*iFEpu_t)(x64emu_t*, void*, uint32_t); typedef int32_t (*iFlip_t)(intptr_t, int32_t, void*); typedef int32_t (*iFLLi_t)(uintptr_t, uintptr_t, int32_t); typedef int32_t (*iFLLii_t)(uintptr_t, uintptr_t, int32_t, int32_t); @@ -7130,6 +7131,7 @@ void iFEipipp(x64emu_t *emu, uintptr_t fcn) { iFEipipp_t fn = (iFEipipp_t)fcn; R #if !defined(STATICBUILD) void lFiN(x64emu_t *emu, uintptr_t fcn) { lFiN_t fn = (lFiN_t)fcn; R_RAX=(intptr_t)fn((int32_t)R_RDI, (void*)R_RSI); } +void iFEpu(x64emu_t *emu, uintptr_t fcn) { iFEpu_t fn = (iFEpu_t)fcn; R_RAX=(uint32_t)fn(emu, (void*)R_RDI, (uint32_t)R_RSI); } void iFlip(x64emu_t *emu, uintptr_t fcn) { iFlip_t fn = (iFlip_t)fcn; R_RAX=(uint32_t)fn((intptr_t)R_RDI, (int32_t)R_RSI, (void*)R_RDX); } void iFLLi(x64emu_t *emu, uintptr_t fcn) { iFLLi_t fn = (iFLLi_t)fcn; R_RAX=(uint32_t)fn((uintptr_t)R_RDI, (uintptr_t)R_RSI, (int32_t)R_RDX); } void iFLLii(x64emu_t *emu, uintptr_t fcn) { iFLLii_t fn = (iFLLii_t)fcn; R_RAX=(uint32_t)fn((uintptr_t)R_RDI, (uintptr_t)R_RSI, (int32_t)R_RDX, (int32_t)R_RCX); } |