radare2/libr/config.h
pancake 1e6806aa84 * Add R_INLINE in config.h
* Add R_API directive in r_types
* Huge refactoring for r_print
  - C code format
  - formatted memory structures also working (not finished)
  - unix, dos and w32 timestamps
  - Added p->interrupt to break loong loops (should we think in a limit?)
  - print formats that need processing returns the number of bytes processed
    - if they return 0 is because they failed
  - Much more simplified code than the one in r1
  - Use p->printf instead of r_cons_printf (aim to independize from r_cons)
  - Some basic support for color output
2009-03-12 00:42:32 +00:00

16 lines
241 B
C

#ifndef _INCLUDE_CONFIG_H_
#define _INCLUDE_CONFIG_H_
/* 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 \
0
#endif