summaryrefslogtreecommitdiff
path: root/src/cmumble.h
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2011-09-23 15:15:47 +0200
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2011-09-23 15:18:45 +0200
commit498f3e8abb59742720e8ff01b3018802651be430 (patch)
tree7aeabb72eca06c03ccdc67be46c96b973768778c /src/cmumble.h
parent6efcc38a8521a17074626456cda67e7d35f2b7c5 (diff)
downloadcmumble-498f3e8abb59742720e8ff01b3018802651be430.tar.gz
cmumble-498f3e8abb59742720e8ff01b3018802651be430.tar.bz2
cmumble-498f3e8abb59742720e8ff01b3018802651be430.zip
Add prefix cmumble_ to struct context and struct user
Diffstat (limited to 'src/cmumble.h')
-rw-r--r--src/cmumble.h6
1 files changed, 3 insertions, 3 deletions
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;