aboutsummaryrefslogtreecommitdiff
path: root/src/commands.h
diff options
context:
space:
mode:
authorHarry Jeffery <harry@exec64.co.uk>2017-04-14 16:23:50 +0100
committerHarry Jeffery <harry@exec64.co.uk>2017-04-14 16:23:50 +0100
commitb46385618eb6c2e6ee468c672c6824259d97add2 (patch)
tree08c64828f5ae44c07fdf81a903af2628a153e883 /src/commands.h
parent83959687adbd90303ee2ff630f659b8994000808 (diff)
downloadimv-b46385618eb6c2e6ee468c672c6824259d97add2.tar.gz
Add basic alias support
Diffstat (limited to 'src/commands.h')
-rw-r--r--src/commands.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/commands.h b/src/commands.h
index 1dfa3bf..b3a78e6 100644
--- a/src/commands.h
+++ b/src/commands.h
@@ -19,6 +19,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#define COMMANDS_H
void imv_command_register(const char *command, void (*handler)());
+void imv_command_alias(const char *command, const char *alias);
int imv_command_exec(const char *command);
#endif