about summary refs log tree commit diff stats
path: root/src/plugins/callbacks.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-07-04 22:42:15 +0100
committerJames Booth <boothj5@gmail.com>2016-07-04 22:42:15 +0100
commit0d7b4cb4a7bac70bdb494dbcbeaaa18996e1a496 (patch)
treebd7b6b3585fa813e975e6212e91906adc6a45ecf /src/plugins/callbacks.h
parenta779ad0764b830fe9e72bc188789ca22ecd4e394 (diff)
downloadprofani-tty-0d7b4cb4a7bac70bdb494dbcbeaaa18996e1a496.tar.gz
Store plugin window callbacks by plugin name
Diffstat (limited to 'src/plugins/callbacks.h')
-rw-r--r--src/plugins/callbacks.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/callbacks.h b/src/plugins/callbacks.h
index 7284ba28..8fd577fb 100644
--- a/src/plugins/callbacks.h
+++ b/src/plugins/callbacks.h
@@ -68,7 +68,7 @@ void callbacks_close(void);
 
 void callbacks_add_command(const char *const plugin_name, PluginCommand *command);
 void callbacks_add_timed(const char *const plugin_name, PluginTimedFunction *timed_function);
-void callbacks_add_window_handler(const char *tag, PluginWindowCallback *window_callback);
+void callbacks_add_window_handler(const char *const plugin_name, const char *tag, PluginWindowCallback *window_callback);
 void * callbacks_get_window_handler(const char *tag);
 
 #endif