blob: baebd72d1616f303507b9057042195747c43c31f (
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_step(x64emu_t* ref, uintptr_t ip);
void x64test_check(x64emu_t* ref, uintptr_t ip);
#endif // __DYNAREC_H_
|