blob: c304cf1e9e4aa1e9e603176a9d06882bcbadb761 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#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(x64emu_t* ref);
void x64test_check(x64emu_t* ref);
#endif // __DYNAREC_H_
|