about summary refs log tree commit diff stats
path: root/src/plugins/profapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/profapi.c')
-rw-r--r--src/plugins/profapi.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/plugins/profapi.c b/src/plugins/profapi.c
index b8046373..5157ec72 100644
--- a/src/plugins/profapi.c
+++ b/src/plugins/profapi.c
@@ -39,6 +39,7 @@
 
 void (*prof_cons_alert)(void) = NULL;
 int (*prof_cons_show)(const char * const message) = NULL;
+int (*prof_cons_show_themed)(const char *const group, const char *const item, const char *const def, const char *const message) = NULL;
 int (*prof_cons_bad_cmd_usage)(const char *const cmd) = NULL;
 
 void (*prof_register_command)(const char *command_name, int min_args, int max_args,
@@ -65,7 +66,5 @@ int (*prof_win_exists)(PROF_WIN_TAG win) = NULL;
 void (*prof_win_create)(PROF_WIN_TAG win, void(*input_handler)(PROF_WIN_TAG win, char *line)) = NULL;
 int (*prof_win_focus)(PROF_WIN_TAG win) = NULL;
 int (*prof_win_show)(PROF_WIN_TAG win, char *line) = NULL;
-int (*prof_win_show_green)(PROF_WIN_TAG win, char *line) = NULL;
-int (*prof_win_show_red)(PROF_WIN_TAG win, char *line) = NULL;
-int (*prof_win_show_cyan)(PROF_WIN_TAG win, char *line) = NULL;
-int (*prof_win_show_yellow)(PROF_WIN_TAG win, char *line) = NULL;
+int (*prof_win_show_themed)(PROF_WIN_TAG tag, char *group, char *key, char *def, char *line) = NULL;
+