Autojoining to channels work with irssi-text too

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@15 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 1999-09-04 20:06:53 +00:00 committed by cras
commit afee6cfa8f
3 changed files with 21 additions and 3 deletions

View file

@ -100,7 +100,6 @@ typedef struct
}
SETUP_SERVER_REC;
/* servers */
extern GList *setupservers; /* list of local servers */
extern GList *ircnets; /* list of available ircnets */
extern gint server_reconnect_time; /* reconnect to server no sooner than n seconds */
@ -110,6 +109,24 @@ extern IPADDR source_host_ip; /* Resolved address */
extern gchar *default_nick, *alternate_nick, *user_name, *real_name;
extern gboolean toggle_skip_motd;
/* channels */
typedef struct
{
gboolean autojoin;
gchar *name;
gchar *ircnet;
gchar *password;
gchar *botmasks;
gchar *autosendcmd;
gchar *background;
gchar *font;
}
SETUP_CHANNEL_REC;
extern GList *setupchannels;
/* IRC proxy */
extern gboolean toggle_use_ircproxy;
extern gchar *proxy_address;