diff options
Diffstat (limited to 'src/commands.h')
-rw-r--r-- | src/commands.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/commands.h b/src/commands.h index 24290af..cfecde9 100644 --- a/src/commands.h +++ b/src/commands.h @@ -1,17 +1,17 @@ #ifndef _COMMANDS_H_ #define _COMMANDS_H_ -struct cmumlbe; +struct cmumble; struct cmumble_command { const char *name; - void (*callback)(struct cmumlbe *, + void (*callback)(struct cmumble *, int argc, char **argv); const char *description; }; void -cmumble_commands_init(struct cmumlbe *cm); +cmumble_commands_init(struct cmumble *cm); const char * cmumble_command_expand_shortcut(const char *text); |