2000-08-26 11:39:44 -04:00
|
|
|
#ifndef __CHATNETS_H
|
|
|
|
#define __CHATNETS_H
|
|
|
|
|
|
|
|
#include "modules.h"
|
|
|
|
|
|
|
|
/* Returns CHATNET_REC if it's chatnet, NULL if it isn't. */
|
|
|
|
#define CHATNET(chatnet) \
|
2000-08-30 18:29:55 -04:00
|
|
|
MODULE_CHECK_CAST(chatnet, CHATNET_REC, type, "CHATNET")
|
|
|
|
|
|
|
|
#define IS_CHATNET(chatnet) \
|
|
|
|
(CHATNET(chatnet) ? TRUE : FALSE)
|
2000-08-26 11:39:44 -04:00
|
|
|
|
2001-01-01 02:45:54 -05:00
|
|
|
struct _CHATNET_REC {
|
2000-08-26 11:39:44 -04:00
|
|
|
#include "chatnet-rec.h"
|
2001-01-01 02:45:54 -05:00
|
|
|
};
|
2000-08-26 11:39:44 -04:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
2001-02-17 14:44:22 -05:00
|
|
|
/* Find the chat network by name */
|
2000-08-26 11:39:44 -04:00
|
|
|
CHATNET_REC *chatnet_find(const char *name);
|
|
|
|
|
|
|
|
void chatnets_init(void);
|
|
|
|
void chatnets_deinit(void);
|
|
|
|
|
|
|
|
#endif
|