summaryrefslogtreecommitdiff
path: root/src/fe-common/core/hilight-text.h
diff options
context:
space:
mode:
authorWouter Coekaerts <coekie@irssi.org>2004-10-06 16:25:34 +0000
committercoekie <coekie@dbcabf3a-b0e7-0310-adc4-f8d773084564>2004-10-06 16:25:34 +0000
commitfa80d4913b4a103a6bfc184245d880eda9ef20d4 (patch)
treeb74dde7e31778f31fb2daa00461347ec6e9c5b7f /src/fe-common/core/hilight-text.h
parentc5982338c131d096914e48aceb6b786c31a7686f (diff)
downloadirssi-fa80d4913b4a103a6bfc184245d880eda9ef20d4.zip
Fix HILIGHT -actcolor -mask (Bug 131)
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3309 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/core/hilight-text.h')
-rw-r--r--src/fe-common/core/hilight-text.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/fe-common/core/hilight-text.h b/src/fe-common/core/hilight-text.h
index 6e510737..74c58780 100644
--- a/src/fe-common/core/hilight-text.h
+++ b/src/fe-common/core/hilight-text.h
@@ -5,6 +5,8 @@
# include <regex.h>
#endif
+#include "formats.h"
+
typedef struct _HILIGHT_REC HILIGHT_REC;
struct _HILIGHT_REC {
@@ -36,9 +38,12 @@ HILIGHT_REC *hilight_match(SERVER_REC *server, const char *channel,
int level, const char *str,
int *match_beg, int *match_end);
-char *hilight_match_nick(SERVER_REC *server, const char *channel,
+HILIGHT_REC *hilight_match_nick(SERVER_REC *server, const char *channel,
const char *nick, const char *address,
int level, const char *msg);
+
+char *hilight_get_color(HILIGHT_REC *rec);
+void hilight_update_text_dest(TEXT_DEST_REC *dest, HILIGHT_REC *rec);
void hilight_create(HILIGHT_REC *rec);
void hilight_remove(HILIGHT_REC *rec);