From f4829a8ce42b1abbcc8621802d6c6fad3a56cd5d Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Wed, 3 Mar 2021 16:43:42 +0100 Subject: More infrastructure added to elf and x64 emu --- src/include/callback.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 src/include/callback.h (limited to 'src/include/callback.h') diff --git a/src/include/callback.h b/src/include/callback.h new file mode 100755 index 00000000..b9482fc1 --- /dev/null +++ b/src/include/callback.h @@ -0,0 +1,12 @@ +#ifndef __CALLBACK_H__ +#define __CALLBACK_H__ + +#include + +typedef struct x64emu_s x64emu_t; + +uint64_t RunFunction(box64context_t *context, uintptr_t fnc, int nargs, ...); +// use emu state to run function +uint64_t RunFunctionWithEmu(x64emu_t *emu, int QuitOnLongJump, uintptr_t fnc, int nargs, ...); + +#endif //__CALLBACK_H__ \ No newline at end of file -- cgit 1.4.1