diff options
Diffstat (limited to 'src/commands.h')
-rw-r--r-- | src/commands.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.h b/src/commands.h index a955fac..2da0617 100644 --- a/src/commands.h +++ b/src/commands.h @@ -26,7 +26,7 @@ struct imv_commands { struct imv_commands *imv_commands_create(void); void imv_commands_free(struct imv_commands *cmds); -void imv_command_register(struct imv_commands *cmds, const char *command, void (*handler)(struct imv_list*, void*)); +void imv_command_register(struct imv_commands *cmds, const char *command, void (*handler)(struct imv_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); |