blob: 891485a9dc5f3ce144924bfc9fdcab6d9d9ee1e1 (
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, int is32bits);
#endif //__DYNAREC_ARM_H_
|