summaryrefslogtreecommitdiff
path: root/src/irc/bot/bot.h
diff options
context:
space:
mode:
authorEmanuele Giaquinta <exg@irssi.org>2008-03-04 18:15:51 +0000
committerexg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564>2008-03-04 18:15:51 +0000
commit3e37906cf71ce93ee7faa4a6b9469abbd6811196 (patch)
tree97ee82766d4f7c3879b4d1f12cea8e154ac966f8 /src/irc/bot/bot.h
parentdf0536c6035279f7fe9b37bb6658275d65e19239 (diff)
downloadirssi-3e37906cf71ce93ee7faa4a6b9469abbd6811196.zip
Remove long unmaintained botnet module.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4723 dbcabf3a-b0e7-0310-adc4-f8d773084564
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