summaryrefslogtreecommitdiff
path: root/vchat.h
diff options
context:
space:
mode:
authorerdgeist <>2003-04-03 17:25:40 +0000
committererdgeist <>2003-04-03 17:25:40 +0000
commiteff6ed2586f19fa86242eed610d339ee111699e9 (patch)
treed3652c1fc03bdfc0560c5bde8ad199acb3a8b739 /vchat.h
parent6dccef4fd1a101d01dbad7d1810a9fc38b2a6b2d (diff)
Making user struct opaque
Diffstat (limited to 'vchat.h')
-rwxr-xr-xvchat.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/vchat.h b/vchat.h
index 66b9aff..4dca1a1 100755
--- a/vchat.h
+++ b/vchat.h
@@ -15,15 +15,7 @@
15 */ 15 */
16 16
17/* user structure */ 17/* user structure */
18struct user 18struct user;
19{
20 unsigned char *nick; /* nick of user */
21 int chan; /* channel user is on */
22 int chan_valid; /* are we sure he is? */
23 int client_pv; /* client protocol version */
24 int messaged; /* did we message with this user? */
25 struct user *next; /* next user in linked list */
26};
27typedef struct user user; 19typedef struct user user;
28/* userlist from vchat-user.c */ 20/* userlist from vchat-user.c */
29extern user *nicks; 21extern user *nicks;