radare2/libr/include/r_cmd.h
pancake b65fbeb772 * Add some missing function signatures
- Fixes some warnings
* Select thread that returns the wait()
  - Useful for multi-threaded or multi-process debugging
2010-03-11 01:04:59 +01:00

57 lines
1.6 KiB
C

#ifndef _INCLUDE_R_CMD_H_
#define _INCLUDE_R_CMD_H_
#include <r_types.h>
#include <r_util.h>
#include "list.h"
#define r_cmd_callback(x) int (*x)(void *data, const char *input)
#define r_cmd_nullcallback(x) int (*x)(void *data);
typedef struct r_cmd_item_t {
char cmd[64];
char desc[128];
r_cmd_callback(callback);
} RCommandItem;
typedef struct r_cmd_long_item_t {
char cmd[64]; /* long command */
int cmd_len;
char cmd_short[32]; /* short command */
char desc[128];
struct list_head list;
} RCommandLongItem;
typedef struct r_cmd_t {
void *data;
r_cmd_nullcallback(nullcallback);
struct list_head lcmds;
struct r_cmd_item_t *cmds[255];
RList *plist;
} RCommand;
typedef struct r_cmd_handle_t {
char *name;
int (*call)(void *user, const char *cmd);
} RCommandHandle;
#ifdef R_API
R_API RCommand *r_cmd_new();
R_API RCommand * r_cmd_init(struct r_cmd_t *cmd);
R_API int r_cmd_set_data(struct r_cmd_t *cmd, void *data);
R_API int r_cmd_add(struct r_cmd_t *cmd, const char *command, const char *desc, r_cmd_callback(callback));
R_API int r_cmd_add_long(struct r_cmd_t *cmd, const char *longcmd, const char *shortcmd, const char *desc);
R_API int r_cmd_del(struct r_cmd_t *cmd, const char *command);
R_API int r_cmd_call(struct r_cmd_t *cmd, const char *command);
R_API int r_cmd_call_long(struct r_cmd_t *cmd, const char *input);
R_API char **r_cmd_args(struct r_cmd_t *cmd, int *argc);
R_API int r_cmd_handle_init(struct r_cmd_t *cmd);
R_API int r_cmd_handle_add(struct r_cmd_t *cmd, struct r_cmd_handle_t *plugin);
R_API int r_cmd_handle_check(struct r_cmd_t *cmd, const char *a0);
/* plugins */
extern struct r_cmd_handle_t r_cmd_plugin_dummy;
#endif
#endif