aboutsummaryrefslogtreecommitdiff
path: root/src/binds.h
diff options
context:
space:
mode:
authorJeinzi <Jeinzi@gmx.de>2018-09-01 00:34:50 +0200
committerJeinzi <Jeinzi@gmx.de>2018-09-01 00:34:50 +0200
commit88d6dc2ef7ebee4b04b079455727034a0f594aae (patch)
tree41d30d23311f780440fbc4b1bdc02443c52f6dfb /src/binds.h
parent7221ef8319ad88c9ab81e7734e89b8debfe861b4 (diff)
downloadimv-88d6dc2ef7ebee4b04b079455727034a0f594aae.tar.gz
Added support for multiple commands per bind.
Diffstat (limited to 'src/binds.h')
-rw-r--r--src/binds.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/binds.h b/src/binds.h
index 05810d8..a720fe1 100644
--- a/src/binds.h
+++ b/src/binds.h
@@ -32,7 +32,7 @@ const struct list *imv_bind_input_buffer(struct imv_binds *binds);
void imv_bind_clear_input(struct imv_binds *binds);
/* Handle an input event, if a bind is triggered, return its command */
-const char *imv_bind_handle_event(struct imv_binds *binds, const SDL_Event *event);
+struct list *imv_bind_handle_event(struct imv_binds *binds, const SDL_Event *event);
/* Convert a string (such as from a config) to a key list */
struct list *imv_bind_parse_keys(const char *keys);