about summary refs log tree commit diff stats
path: root/src/emu/x64int_private.h
blob: 97e81025f979ee0df88061cd24488778403869cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef __X64INT_PRIVATE_H_
#define __X64INT_PRIVATE_H_

void x64Syscall(x64emu_t *emu);
void x64Int3(x64emu_t* emu, uintptr_t* addr);
x64emu_t* x64emu_fork(x64emu_t* e, int forktype);
void x86Syscall(x64emu_t *emu); //32bits syscall
void x86Int3(x64emu_t* emu, uintptr_t* addr);

#endif // __X64INT_PRIVATE_H_