summaryrefslogtreecommitdiff
path: root/src/irc/notifylist
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-05-25 11:30:47 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-05-25 11:30:47 +0000
commit76605ad0aed7e53c4a9dab686474235f547a5837 (patch)
tree078c0ebf5f7099daaa2dcf9ff252f418dedcce34 /src/irc/notifylist
parent487da4174504f797171f12a01636c54272ec6a62 (diff)
downloadirssi-76605ad0aed7e53c4a9dab686474235f547a5837.zip
Added bot plugin, it also has almost-functional botnet.
Changed configure.in's functionality so that you could tell what modules you want to build in main irssi binary and it will create automatically the .c files that need to call the module_init()/deinit() functions. Fixed several minor things.. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@230 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc/notifylist')
-rw-r--r--src/irc/notifylist/notifylist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/notifylist/notifylist.c b/src/irc/notifylist/notifylist.c
index 17adb3da..6b46ff3d 100644
--- a/src/irc/notifylist/notifylist.c
+++ b/src/irc/notifylist/notifylist.c
@@ -322,7 +322,7 @@ static void sig_channel_wholist(CHANNEL_REC *channel)
g_slist_free(nicks);
}
-void notifylist_init(void)
+void irc_notifylist_init(void)
{
notifylist_read_config();
@@ -338,7 +338,7 @@ void notifylist_init(void)
signal_add("setup reread", (SIGNAL_FUNC) notifylist_read_config);
}
-void notifylist_deinit(void)
+void irc_notifylist_deinit(void)
{
notifylist_commands_deinit();
notifylist_ison_deinit();