blob: bf72349ccdf8454e18714a1cb73a221dad916cf7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __DYNAREC_H_
#define __DYNAREC_H_
typedef struct x64emu_s x64emu_t;
void DynaCall(x64emu_t* emu, uintptr_t addr); // try to use DynaRec... Fallback to EmuCall if no dynarec available
void x64test_init();
void x64test_step(x64emu_t* ref, uintptr_t ip);
void x64test_check(x64emu_t* ref, uintptr_t ip);
#endif // __DYNAREC_H_
|