mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-01 00:51:19 +00:00
e6f2cd0b2a
$ git grep ' $' | grep -v ^test/ | cut -d : -f 1 | sort -u > /tmp/trailing $ for a in `cat /tmp/trailing` ; do sed -i -e 's/ *$//' $a ; done
57 lines
1.7 KiB
C
57 lines
1.7 KiB
C
/* radare2 - LGPL - Copyright 2015-2021 - pancake */
|
|
|
|
#ifndef R2_BIND_H
|
|
#define R2_BIND_H
|
|
|
|
// TODO: move riobind here too?
|
|
// TODO: move rprint here too
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef int (*RCoreCmd)(void *core, const char *cmd);
|
|
typedef int (*RCoreCmdF)(void *user, const char *fmt, ...);
|
|
typedef int (*RCoreDebugBpHit)(void *core, void *bp);
|
|
typedef void (*RCoreDebugSyscallHit)(void *core);
|
|
typedef char* (*RCoreCmdStr)(void *core, const char *cmd);
|
|
typedef char* (*RCoreCmdStrF)(void *core, const char *cmd, ...);
|
|
typedef void (*RCorePuts)(const char *cmd);
|
|
typedef void (*RCoreSetArchBits)(void *core, const char *arch, int bits);
|
|
typedef bool (*RCoreIsMapped)(void *core, ut64 addr, int perm);
|
|
typedef bool (*RCoreDebugMapsSync)(void *core);
|
|
typedef const char *(*RCoreGetName)(void *core, ut64 off);
|
|
typedef char *(*RCoreGetNameDelta)(void *core, ut64 off);
|
|
typedef void (*RCoreSeekArchBits)(void *core, ut64 addr);
|
|
typedef int (*RCoreConfigGetI)(void *core, const char *key);
|
|
typedef const char *(*RCoreConfigGet)(void *core, const char *key);
|
|
typedef ut64 (*RCoreNumGet)(void *core, const char *str);
|
|
typedef void *(*RCorePJWithEncoding)(void *core);
|
|
|
|
typedef struct r_core_bind_t {
|
|
void *core;
|
|
RCoreCmd cmd;
|
|
RCoreCmdF cmdf;
|
|
RCoreCmdStr cmdstr;
|
|
RCoreCmdStrF cmdstrf;
|
|
RCorePuts puts;
|
|
RCoreDebugBpHit bphit;
|
|
RCoreDebugSyscallHit syshit;
|
|
RCoreSetArchBits setab;
|
|
RCoreGetName getName;
|
|
RCoreGetNameDelta getNameDelta;
|
|
RCoreSeekArchBits archbits;
|
|
RCoreConfigGetI cfggeti;
|
|
RCoreConfigGet cfgGet;
|
|
RCoreNumGet numGet;
|
|
RCoreIsMapped isMapped;
|
|
RCoreDebugMapsSync syncDebugMaps;
|
|
RCorePJWithEncoding pjWithEncoding;
|
|
} RCoreBind;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|