summaryrefslogtreecommitdiff
path: root/src/io.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/io.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/io.h')
-rw-r--r--src/io.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/io.h b/src/io.h
index 2f48df7..c774b6a 100644
--- a/src/io.h
+++ b/src/io.h
@@ -10,12 +10,12 @@ struct cmumble_io {
struct termios term;
};
-struct context;
+struct cmumble_context;
int
-cmumble_io_init(struct context *ctx);
+cmumble_io_init(struct cmumble_context *ctx);
int
-cmumble_io_fini(struct context *ctx);
+cmumble_io_fini(struct cmumble_context *ctx);
#endif /* _IO_H_ */