summaryrefslogtreecommitdiff
path: root/src/core/special-vars.h
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-12-05 00:53:04 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-12-05 00:53:04 +0000
commitd1eaeca255025c38f70e9542ec141a5713496142 (patch)
treece543f56b2b07b79f44fd2c2b0c2613137e7e533 /src/core/special-vars.h
parent5f941b8fa6442b7c0992561e56eb7dcd7a18046b (diff)
downloadirssi-d1eaeca255025c38f70e9542ec141a5713496142.zip
Split expandos from special-vars.c to expandos.c. Added list of signals
to each expando that can might change it's value. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@964 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core/special-vars.h')
-rw-r--r--src/core/special-vars.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/core/special-vars.h b/src/core/special-vars.h
index 729ac991..1b8b3e20 100644
--- a/src/core/special-vars.h
+++ b/src/core/special-vars.h
@@ -3,8 +3,6 @@
#include "servers.h"
-typedef char* (*EXPANDO_FUNC)
- (SERVER_REC *server, void *item, int *free_ret);
typedef char* (*SPECIAL_HISTORY_FUNC)
(const char *text, void *item, int *free_ret);
@@ -21,14 +19,6 @@ char *parse_special_string(const char *cmd, SERVER_REC *server, void *item,
void eval_special_string(const char *cmd, const char *data,
SERVER_REC *server, void *item);
-/* Create expando - overrides any existing ones. */
-void expando_create(const char *key, EXPANDO_FUNC func);
-/* Destroy expando */
-void expando_destroy(const char *key, EXPANDO_FUNC func);
-
void special_history_func_set(SPECIAL_HISTORY_FUNC func);
-void special_vars_init(void);
-void special_vars_deinit(void);
-
#endif