diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-05-11 14:01:46 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-05-11 14:01:46 +0200 |
| commit | b1eabd758349fafb92871254c34ff7e207b508be (patch) | |
| tree | 1631b1c827fe67494d6e4dbc1c788b98f15256e9 /src/include | |
| parent | 7a2d9967f5aba185ea641cee996310187002fa24 (diff) | |
| download | box64-b1eabd758349fafb92871254c34ff7e207b508be.tar.gz box64-b1eabd758349fafb92871254c34ff7e207b508be.zip | |
[WRAPPER] Added more wrapped function to ffmpeg, and disable it with NOGTK=1, as wrapping needs more work on structure callbacks
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/callback.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/callback.h b/src/include/callback.h index 48d360c5..502a9dc7 100644 --- a/src/include/callback.h +++ b/src/include/callback.h @@ -7,6 +7,7 @@ typedef struct x64emu_s x64emu_t; uint64_t RunFunction(uintptr_t fnc, int nargs, ...); uint64_t RunFunctionFmt(uintptr_t fnc, const char* fmt, ...); +double RunFunctionFmtD(uintptr_t fnc, const char* fmt, ...); // save all modified register uint64_t RunSafeFunction(uintptr_t fnc, int nargs, ...); // use emu state to run function |