mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 08:32:07 +02:00
Sending files through botnet works.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@253 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
9747762593
commit
ed14019530
10 changed files with 177 additions and 30 deletions
|
|
@ -20,9 +20,6 @@
|
|||
|
||||
#include "module.h"
|
||||
|
||||
void bot_commands_deinit(void);
|
||||
void bot_commands_init(void);
|
||||
|
||||
void bot_irc_commands_deinit(void);
|
||||
void bot_irc_commands_init(void);
|
||||
|
||||
|
|
@ -38,7 +35,6 @@ void botnet_deinit(void);
|
|||
void irc_bot_init(void)
|
||||
{
|
||||
bot_users_init();
|
||||
bot_commands_init();
|
||||
bot_irc_commands_init();
|
||||
bot_events_init();
|
||||
botnet_init();
|
||||
|
|
@ -47,7 +43,6 @@ void irc_bot_init(void)
|
|||
void irc_bot_deinit(void)
|
||||
{
|
||||
bot_users_deinit();
|
||||
bot_commands_deinit();
|
||||
bot_irc_commands_deinit();
|
||||
bot_events_deinit();
|
||||
botnet_deinit();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue