mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
multiprotocol updates. SILC prints channel and private messages now
using the same message formats as IRC. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@699 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
965def294b
commit
2b8580c8a7
46 changed files with 667 additions and 687 deletions
|
|
@ -39,6 +39,9 @@
|
|||
#include "queries.h"
|
||||
#include "nicklist.h"
|
||||
|
||||
void chat_commands_init(void);
|
||||
void chat_commands_deinit(void);
|
||||
|
||||
int irssi_gui;
|
||||
|
||||
void core_init(void)
|
||||
|
|
@ -62,6 +65,8 @@ void core_init(void)
|
|||
channels_init();
|
||||
queries_init();
|
||||
nicklist_init();
|
||||
|
||||
chat_commands_init();
|
||||
}
|
||||
|
||||
void core_deinit(void)
|
||||
|
|
@ -69,6 +74,8 @@ void core_deinit(void)
|
|||
while (modules != NULL)
|
||||
module_unload(modules->data);
|
||||
|
||||
chat_commands_deinit();
|
||||
|
||||
nicklist_deinit();
|
||||
queries_deinit();
|
||||
channels_deinit();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue