summaryrefslogtreecommitdiff
path: root/src/core/special-vars.h
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-09-23 17:32:05 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-09-23 17:32:05 +0000
commit26d84e25ab6418936cef456a490cc4627fe85036 (patch)
treedd26ff1eb3363f4e0c5ed43c7579f1f608f8fc4d /src/core/special-vars.h
parenta51170c00fd48a09963d236e69a97d5971eb2984 (diff)
downloadirssi-26d84e25ab6418936cef456a490cc4627fe85036.zip
added expando_get_signals() and special_vars_get_signals() to return list
of signals the expandos use. Also added "time changed" signal which gets emitted when $Z changes. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1814 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core/special-vars.h')
-rw-r--r--src/core/special-vars.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/special-vars.h b/src/core/special-vars.h
index c27a50a8..11262dad 100644
--- a/src/core/special-vars.h
+++ b/src/core/special-vars.h
@@ -31,5 +31,7 @@ void special_vars_add_signals(const char *text,
int funccount, SIGNAL_FUNC *funcs);
void special_vars_remove_signals(const char *text,
int funccount, SIGNAL_FUNC *funcs);
+/* Returns [<signal id>, EXPANDO_ARG_xxx, <signal id>, ..., -1] */
+int *special_vars_get_signals(const char *text);
#endif