mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 12:53:42 +02:00
..adding new files..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@171 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
d01b094151
commit
c95034c6de
206 changed files with 31247 additions and 0 deletions
27
src/irc/irc.c
Normal file
27
src/irc/irc.c
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
void irc_core_init(void);
|
||||
void irc_core_deinit(void);
|
||||
|
||||
void dcc_init(void);
|
||||
void dcc_deinit(void);
|
||||
|
||||
void flood_init(void);
|
||||
void flood_deinit(void);
|
||||
|
||||
void notifylist_init(void);
|
||||
void notifylist_deinit(void);
|
||||
|
||||
void irc_init(void)
|
||||
{
|
||||
irc_core_init();
|
||||
dcc_init();
|
||||
flood_init();
|
||||
notifylist_init();
|
||||
}
|
||||
|
||||
void irc_deinit(void)
|
||||
{
|
||||
notifylist_deinit();
|
||||
flood_deinit();
|
||||
dcc_deinit();
|
||||
irc_core_deinit();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue