blob: eff5a6bfa02c2f638026efc67aed73de800b3c26 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __DYNAREC_ARM_H_
#define __DYNAREC_ARM_H_
typedef struct dynablock_s dynablock_t;
typedef struct x64emu_s x64emu_t;
typedef struct instsize_s instsize_t;
void addInst(instsize_t* insts, size_t* size, int x64_size, int native_size);
void CancelBlock64(int need_lock);
void* FillBlock64(dynablock_t* block, uintptr_t addr);
#endif //__DYNAREC_ARM_H_
|