mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-04 03:11:28 +00:00
936db0db87
- Properly load all LIBR_PLUGINS from rabin2 too - Maybe we will have to add a common stub for this * Add r_bin_plugin_elf in the STATIC_PLUGINS list * Add ii, iI, ie, is, iS, iz commands (accepts a * at the end) - Wrappers to run rabin2 over the opened file * Add -l flag to radiff2 (line diffing) - Added -s flag to radiff2 (string distance) - Move linediff test program into the test.c - Use R_API for r_diff - Use double for buffers_distance - Fix -c flag (now we have modes and 'showcount' toggles)
25 lines
377 B
C
25 lines
377 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 R_ASM_STATIC_PLUGINS \
|
|
&r_asm_plugin_java, \
|
|
&r_asm_plugin_x86_olly, \
|
|
&r_asm_plugin_mips, \
|
|
0
|
|
|
|
#define R_BIN_STATIC_PLUGINS \
|
|
&r_bin_plugin_elf , \
|
|
0
|
|
|
|
#define R_BININFO_STATIC_PLUGINS \
|
|
&r_bininfo_plugin_addr2line, \
|
|
0
|
|
|
|
#endif
|