From 498f3e8abb59742720e8ff01b3018802651be430 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Fri, 23 Sep 2011 15:15:47 +0200 Subject: Add prefix cmumble_ to struct context and struct user --- src/commands.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/commands.h') 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_ */ -- cgit