1 /* 2 * Copyright 2008, François Revol, revol@free.fr 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _DISASM_ARCH_H 6 #define _DISASM_ARCH_H 7 8 #ifdef __cplusplus 9 extern "C" { 10 #endif 11 12 extern status_t disasm_arch_init(); 13 extern status_t disasm_arch_fini(); 14 15 extern status_t disasm_arch_dump_insns(addr_t where, int count, 16 addr_t baseAddress, int backCount); 17 18 #ifdef __cplusplus 19 } 20 #endif 21 22 #endif /* _DISASM_ARCH_H */ 23