mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-03 20:22:38 +00:00
df9e68bf53
- 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
37 lines
607 B
C
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
|