1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-30 02:45:25 -04:00
irssi/src/core/chatnets.h
Timo Sirainen be6ba53fa4 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
2001-02-17 19:44:22 +00:00

33 lines
830 B
C

#ifndef __CHATNETS_H
#define __CHATNETS_H
#include "modules.h"
/* Returns CHATNET_REC if it's chatnet, NULL if it isn't. */
#define CHATNET(chatnet) \
MODULE_CHECK_CAST(chatnet, CHATNET_REC, type, "CHATNET")
#define IS_CHATNET(chatnet) \
(CHATNET(chatnet) ? TRUE : FALSE)
struct _CHATNET_REC {
#include "chatnet-rec.h"
};
extern GSList *chatnets; /* list of available chat networks */
/* add the chatnet to chat networks list */
void chatnet_create(CHATNET_REC *chatnet);
/* remove the chatnet from chat networks list */
void chatnet_remove(CHATNET_REC *chatnet);
/* destroy the chatnet structure. doesn't remove from config file */
void chatnet_destroy(CHATNET_REC *chatnet);
/* Find the chat network by name */
CHATNET_REC *chatnet_find(const char *name);
void chatnets_init(void);
void chatnets_deinit(void);
#endif