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/cmumble.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/cmumble.h') diff --git a/src/cmumble.h b/src/cmumble.h index 63b332a..afca177 100644 --- a/src/cmumble.h +++ b/src/cmumble.h @@ -12,9 +12,9 @@ #include "audio.h" #include "commands.h" -typedef void (*callback_t)(ProtobufCMessage *msg, struct context *); +typedef void (*callback_t)(ProtobufCMessage *msg, struct cmumble_context *); -struct context { +struct cmumble_context { struct cmumble_connection con; struct cmumble_io io; struct cmumble_audio audio; @@ -31,7 +31,7 @@ struct context { GList *users; }; -struct user { +struct cmumble_user { uint32_t session; char *name; uint32_t user_id; -- cgit