about summary refs log tree commit diff stats
path: root/src/include/dynarec.h
blob: 64da6041d055ee973fe96ee3d1881bff85e2a219 (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, uintptr_t ip);
void x64test_check(x64emu_t* ref, uintptr_t ip);

#endif // __DYNAREC_H_