mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 15:42:26 +02:00
Config file: ircnets -> chatnets, added type = "chat protocol" to
chatnet config. Moved reading chatnets to core. Lots of other multiprotocol updates. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1237 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
513e140bce
commit
be6ba53fa4
35 changed files with 539 additions and 448 deletions
|
|
@ -3,16 +3,14 @@
|
|||
|
||||
#include "modules.h"
|
||||
|
||||
#define CHANNEL_SETUP(server) \
|
||||
MODULE_CHECK_CAST(server, CHANNEL_SETUP_REC, type, "CHANNEL SETUP")
|
||||
|
||||
#define IS_CHANNEL_SETUP(server) \
|
||||
(CHANNEL_SETUP(server) ? TRUE : FALSE)
|
||||
|
||||
struct _CHANNEL_SETUP_REC {
|
||||
char *name;
|
||||
char *chatnet;
|
||||
char *password;
|
||||
|
||||
char *botmasks;
|
||||
char *autosendcmd;
|
||||
|
||||
unsigned int autojoin:1;
|
||||
GHashTable *module_data;
|
||||
#include "channel-setup-rec.h"
|
||||
};
|
||||
|
||||
extern GSList *setupchannels;
|
||||
|
|
@ -20,11 +18,11 @@ extern GSList *setupchannels;
|
|||
void channels_setup_init(void);
|
||||
void channels_setup_deinit(void);
|
||||
|
||||
void channels_setup_create(CHANNEL_SETUP_REC *channel);
|
||||
void channels_setup_destroy(CHANNEL_SETUP_REC *channel);
|
||||
void channel_setup_create(CHANNEL_SETUP_REC *channel);
|
||||
void channel_setup_remove(CHANNEL_SETUP_REC *channel);
|
||||
|
||||
CHANNEL_SETUP_REC *channels_setup_find(const char *channel,
|
||||
const char *chatnet);
|
||||
CHANNEL_SETUP_REC *channel_setup_find(const char *channel,
|
||||
const char *chatnet);
|
||||
|
||||
#define channel_chatnet_match(rec, chatnet) \
|
||||
((rec) == NULL || (rec)[0] == '\0' || \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue