mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
Merge pull request #905 from horgh/horgh/topic-regression
Add tests for topic events
This commit is contained in:
commit
6ca13dd5cd
6 changed files with 243 additions and 6 deletions
|
|
@ -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 \
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
9
src/irc/core/channel-events.h
Normal file
9
src/irc/core/channel-events.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue