1
0
mirror of https://github.com/irssi/irssi.git synced 2024-11-03 04:27:19 -05:00

Several GLists moved to GSLists.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@159 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-03-19 17:57:32 +00:00 committed by cras
parent 8d6dd5f992
commit 6275dd69ad

View File

@ -23,7 +23,7 @@
#define MAX_MASSJOIN_WAIT 5000 #define MAX_MASSJOIN_WAIT 5000
/* lists */ /* lists */
extern GList *aliases, *ignores, *completions, *notifies, *hilights, *replaces, *popups; extern GSList *aliases, *ignores, *completions, *notifies, *hilights, *replaces, *popups;
/* servers */ /* servers */
typedef struct { typedef struct {
@ -53,8 +53,8 @@ typedef struct {
int max_kicks, max_msgs, max_modes; int max_kicks, max_msgs, max_modes;
} IRCNET_REC; } IRCNET_REC;
extern GList *setupservers; /* list of local servers */ extern GSList *setupservers; /* list of local servers */
extern GList *ircnets; /* list of available ircnets */ extern GSList *ircnets; /* list of available ircnets */
/* channels */ /* channels */
typedef struct { typedef struct {
@ -71,7 +71,7 @@ typedef struct {
char *font; char *font;
} SETUP_CHANNEL_REC; } SETUP_CHANNEL_REC;
extern GList *setupchannels; extern GSList *setupchannels;
extern gboolean readonly; extern gboolean readonly;
extern IPADDR source_host_ip; /* Resolved address */ extern IPADDR source_host_ip; /* Resolved address */