mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 07:32:04 +02:00
Removed several header files that only had xxx_init(); xxx_deinit(); - moved
them to the .c file where they were called. nicklist didn't notice nick changes right. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@183 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
d769109f57
commit
849c091ac4
12 changed files with 84 additions and 84 deletions
|
|
@ -25,14 +25,25 @@
|
|||
#include "query.h"
|
||||
|
||||
#include "ctcp.h"
|
||||
#include "irc-commands.h"
|
||||
#include "irc-rawlog.h"
|
||||
#include "irc-special-vars.h"
|
||||
#include "ignore.h"
|
||||
#include "irc.h"
|
||||
#include "lag.h"
|
||||
#include "netsplit.h"
|
||||
|
||||
void irc_commands_init(void);
|
||||
void irc_commands_deinit(void);
|
||||
|
||||
void irc_rawlog_init(void);
|
||||
void irc_rawlog_deinit(void);
|
||||
|
||||
void irc_special_vars_init(void);
|
||||
void irc_special_vars_deinit(void);
|
||||
|
||||
void irc_log_init(void);
|
||||
void irc_log_deinit(void);
|
||||
|
||||
void lag_init(void);
|
||||
void lag_deinit(void);
|
||||
|
||||
void irc_core_init(void)
|
||||
{
|
||||
irc_servers_init();
|
||||
|
|
@ -47,10 +58,12 @@ void irc_core_init(void)
|
|||
ignore_init();
|
||||
irc_rawlog_init();
|
||||
irc_special_vars_init();
|
||||
irc_log_init();
|
||||
}
|
||||
|
||||
void irc_core_deinit(void)
|
||||
{
|
||||
irc_log_deinit();
|
||||
irc_special_vars_deinit();
|
||||
irc_rawlog_deinit();
|
||||
ignore_deinit();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue