about summary refs log tree commit diff stats
path: root/src/include/dynarec.h
blob: a68c6d6abe338ffba2bc621ce4dcc8044892844b (plain) (blame)
1
2
3
4
5
6
7
8
#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

#endif // __DYNAREC_H_