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 2b1ad66..c95f238 100644 --- a/src/commands.h +++ b/src/commands.h @@ -1,15 +1,15 @@ #ifndef _COMMANDS_H_ #define _COMMANDS_H_ -struct context; +struct cmumble_context; struct cmumble_command { const char *name; - void (*callback)(struct context *); + void (*callback)(struct cmumble_context *); const char *description; }; void -cmumble_commands_init(struct context *ctx); +cmumble_commands_init(struct cmumble_context *ctx); #endif /* _COMMANDS_H_ */ |