radare2/libr/include/r_print.h
pancake 54bdfb22bd * Uppsercase classnames (rCore -> RCore)
- Fixes ruby warnings
  - Follow java syntax conventions
  - Helped to identify and fix bugs in many vapis
  - Sync swig examples
  - Add test-r_core.rb (ruby test for RCore)
* Some work in r_cons, some refactoring and cleanup
  - scr.html is now working again
  - w32 cons support should work now
  - Rename r_cons_get_columns -> r_cons_get_size()
  - But it needs more work
* Typedef all r_range, r_parse and r_anal structs
  - Add missing r_lib.pc in configure.acr
* 'make' clean now removes the libr* in swig/${LANG}/
2010-01-26 01:28:33 +01:00

52 lines
1.9 KiB
C

#ifndef _INCLUDE_PRINT_R_
#define _INCLUDE_PRINT_R_
#include "r_types.h"
#include "r_util.h"
#define R_PRINT_FLAGS_COLOR 0x00000001
#define R_PRINT_FLAGS_ADDRMOD 0x00000002
#define R_PRINT_FLAGS_CURSOR 0x00000004
#define R_PRINT_FLAGS_HEADER 0x00000008
typedef struct r_print_t {
void *user;
int (*read_at)(ut64 addr, ut8 *buf, int len, void *user);
char datefmt[32];
int (*printf)(const char *str, ...);
/* TODO: add printf callback */
int interrupt;
int bigendian;
int width;
int limit;
int cur_enabled;
int cur;
int ocur;
int flags;
int addrmod;
} RPrint;
#ifdef R_API
R_API struct r_print_t *r_print_new();
R_API int r_print_init(struct r_print_t *p);
R_API struct r_print_t *r_print_free(struct r_print_t *p);
R_API void r_print_set_flags(struct r_print_t *p, int _flags);
void r_print_unset_flags(struct r_print_t *p, int flags);
R_API void r_print_set_width(struct r_print_t *p, int width);
R_API void r_print_addr(struct r_print_t *p, ut64 addr);
R_API void r_print_hexdump(struct r_print_t *p, ut64 addr, ut8 *buf, int len, int base, int step);
R_API void r_print_hexpairs(struct r_print_t *p, ut64 addr, ut8 *buf, int len);
R_API void r_print_bytes(struct r_print_t *p, const ut8* buf, int len, const char *fmt);
R_API void r_print_byte(struct r_print_t *p, const char *fmt, int idx, ut8 ch);
R_API void r_print_c(struct r_print_t *p, const char *str, int len);
R_API void r_print_raw(struct r_print_t *p, const ut8* buf, int len);
R_API void r_print_cursor(struct r_print_t *p, int cur, int set);
R_API void r_print_set_cursor(struct r_print_t *p, int curset, int ocursor, int cursor);
R_API void r_print_code(struct r_print_t *p, ut64 addr, ut8 *buf, int len);
R_API void r_print_format(struct r_print_t *p, ut64 seek, const ut8* buf, int len, const char *fmt);
// XXX . change wide, zeroend, urlencode for option flags
R_API int r_print_string(struct r_print_t *p, ut64 seek, const ut8 *str, int len, int wide, int zeroend, int urlencode);
#endif
#endif