summaryrefslogtreecommitdiff
path: root/src/core/expandos.h
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-12-17 07:39:22 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-12-17 07:39:22 +0000
commitbbc33bff5e4ef2acee69dd45a5581231f466b3ac (patch)
treec4171b5bd170676d881810790c49dabce303146b /src/core/expandos.h
parentaac80846b89108414a81773ad4bcdaba4401663d (diff)
downloadirssi-bbc33bff5e4ef2acee69dd45a5581231f466b3ac.zip
/SET prompt, /SET prompt_window - Specifies the text in prompt.
'prompt' is used when channel or query is active in window and 'prompt_window' is used with empty windows. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1005 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core/expandos.h')
-rw-r--r--src/core/expandos.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/expandos.h b/src/core/expandos.h
index 2ce00ecc..a937fcd1 100644
--- a/src/core/expandos.h
+++ b/src/core/expandos.h
@@ -1,6 +1,7 @@
#ifndef __EXPANDOS_H
#define __EXPANDOS_H
+#include "signals.h"
#include "servers.h"
/* first argument of signal must match to active .. */
@@ -25,6 +26,9 @@ void expando_add_signal(const char *key, const char *signal, ExpandoArg arg);
/* Destroy expando */
void expando_destroy(const char *key, EXPANDO_FUNC func);
+void expando_bind(const char *key, int funccount, SIGNAL_FUNC *funcs);
+void expando_unbind(const char *key, int funccount, SIGNAL_FUNC *funcs);
+
/* internal: */
EXPANDO_FUNC expando_find_char(char chr);
EXPANDO_FUNC expando_find_long(const char *key);