summaryrefslogtreecommitdiff
path: root/src/irc/bot/bot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc/bot/bot.h')
-rw-r--r--src/irc/bot/bot.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/irc/bot/bot.h b/src/irc/bot/bot.h
deleted file mode 100644
index a518d4bd..00000000
--- a/src/irc/bot/bot.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#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