radare2/libr/config.h
Nibble df9e68bf53 * rabin2
- Flags '-x' and '-w' unified into '-o'
  - '-w' is used to open file in rw mode
  - More refactoring
* r_bin
  - Added bin_dummy plugin
  - get_strings works now with unknown formats
2009-05-17 12:01:02 +02:00

37 lines
607 B
C

#ifndef _INCLUDE_CONFIG_H_
#define _INCLUDE_CONFIG_H_
#define R_DEBUG 0
#define R_RTDEBUG 1
/* inlined APIs */
#define R_INLINE 0
#define DEFAULT_ARCH "x86"
#define R_ASM_STATIC_PLUGINS \
&r_asm_plugin_java, \
&r_asm_plugin_x86_olly, \
&r_asm_plugin_x86_nasm, \
&r_asm_plugin_mips, \
0
#define R_BIN_STATIC_PLUGINS \
&r_bin_plugin_elf , \
&r_bin_plugin_elf64 , \
&r_bin_plugin_pe , \
&r_bin_plugin_pe64 , \
&r_bin_plugin_java , \
&r_bin_plugin_dummy , \
0
#define R_BININFO_STATIC_PLUGINS \
&r_bininfo_plugin_addr2line, \
0
#define R_BP_STATIC_PLUGINS \
&r_bp_plugin_x86, \
0
#endif