mirror of
https://github.com/irssi/irssi.git
synced 2026-08-14 22:22:15 +02:00
26 lines
332 B
C
26 lines
332 B
C
|
|
#ifndef __BOT_H
|
||
|
|
#define __BOT_H
|
||
|
|
|
||
|
|
typedef struct
|
||
|
|
{
|
||
|
|
PLUGIN_REC *plugin;
|
||
|
|
gboolean loaded;
|
||
|
|
|
||
|
|
GHashTable *users;
|
||
|
|
GSList *botnets;
|
||
|
|
|
||
|
|
gchar *nick;
|
||
|
|
gint rank;
|
||
|
|
|
||
|
|
time_t last_write;
|
||
|
|
}
|
||
|
|
PLUGIN_DATA;
|
||
|
|
|
||
|
|
void plugin_bot_events(PLUGIN_REC *plugin);
|
||
|
|
|
||
|
|
#include "botnet.h"
|
||
|
|
#include "users.h"
|
||
|
|
|
||
|
|
#define MODULE_NAME "bot"
|
||
|
|
|
||
|
|
#endif
|