mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 21:00:40 +02:00
Nickmatch cache. A couple of helper functions to check if channel nicks
belong to something. Used for checking nickmasks in highlighting and ignores (well, ignore isn't done yet). git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1138 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
443ba1a97d
commit
1bfa0e1ee3
4 changed files with 151 additions and 0 deletions
|
|
@ -39,6 +39,7 @@
|
|||
#include "channels.h"
|
||||
#include "queries.h"
|
||||
#include "nicklist.h"
|
||||
#include "nickmatch-cache.h"
|
||||
|
||||
void chat_commands_init(void);
|
||||
void chat_commands_deinit(void);
|
||||
|
|
@ -69,6 +70,7 @@ void core_init(void)
|
|||
channels_init();
|
||||
queries_init();
|
||||
nicklist_init();
|
||||
nickmatch_cache_init();
|
||||
|
||||
chat_commands_init();
|
||||
settings_check();
|
||||
|
|
@ -78,6 +80,7 @@ void core_deinit(void)
|
|||
{
|
||||
chat_commands_deinit();
|
||||
|
||||
nickmatch_cache_deinit();
|
||||
nicklist_deinit();
|
||||
queries_deinit();
|
||||
channels_deinit();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue