diff options
Diffstat (limited to 'irc.h')
| -rw-r--r-- | irc.h | 8 | 
1 files changed, 2 insertions, 6 deletions
| @@ -37,6 +37,7 @@  #define CMODES "nt"  #define CMODE "t"  #define UMODE "s" +#define CTYPES "&#"  typedef enum  { @@ -47,11 +48,6 @@ typedef enum  	USTATUS_SHUTDOWN = 8  } irc_status_t; -typedef struct channel -{ -	char *name; -} channel_t; -  typedef struct irc  {  	int fd; @@ -87,6 +83,7 @@ typedef struct irc  	struct query *queries;  	struct account *accounts;  	GSList *file_transfers; +	struct chat *chatrooms;  	struct __USER *users;  	GHashTable *userhash; @@ -100,7 +97,6 @@ typedef struct irc  } irc_t;  #include "user.h" -// #include "nick.h"  extern GSList *irc_connection_list; | 
