diff options
author | Harry Jeffery <harry@exec64.co.uk> | 2018-10-18 23:16:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-18 23:16:04 +0100 |
commit | 7e1c122027902f05934c1b700e3697d2451536dc (patch) | |
tree | 4c1e2390842c370aea555231d7914df5cc7b2d97 /src/commands.h | |
parent | 7221ef8319ad88c9ab81e7734e89b8debfe861b4 (diff) | |
parent | 51837d93572fe229275d239c7a8d4113ef81ea38 (diff) | |
download | imv-7e1c122027902f05934c1b700e3697d2451536dc.tar.gz |
Merge pull request #134 from Jeinzi/dev-jeinzi
Multiple commands per bind
Diffstat (limited to 'src/commands.h')
-rw-r--r-- | src/commands.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/commands.h b/src/commands.h index cf3a728..cf81f68 100644 --- a/src/commands.h +++ b/src/commands.h @@ -12,6 +12,7 @@ void imv_commands_free(struct imv_commands *cmds); void imv_command_register(struct imv_commands *cmds, const char *command, void (*handler)(struct list*, const char*, void*)); void imv_command_alias(struct imv_commands *cmds, const char *command, const char *alias); int imv_command_exec(struct imv_commands *cmds, const char *command, void *data); +int imv_command_exec_list(struct imv_commands *cmds, struct list *commands, void *data); #endif |