Merge pull request #905 from horgh/horgh/topic-regression

Add tests for topic events
This commit is contained in:
ailin-nemui 2018-10-17 12:31:52 +02:00 committed by GitHub
commit 6ca13dd5cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 243 additions and 6 deletions

View file

@ -40,6 +40,7 @@ pkginc_irc_coredir=$(pkgincludedir)/src/irc/core
pkginc_irc_core_HEADERS = \
bans.h \
ctcp.h \
channel-events.h \
channel-rejoin.h \
irc.h \
irc-channels.h \

View file

@ -21,6 +21,7 @@
#include "module.h"
#include "signals.h"
#include "misc.h"
#include "channel-events.h"
#include "channels-setup.h"
#include "settings.h"
#include "recode.h"

View file

@ -0,0 +1,9 @@
#ifndef __CHANNEL_EVENTS_H
#define __CHANNEL_EVENTS_H
#include "irc.h"
void channel_events_init(void);
void channel_events_deinit(void);
#endif