1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-02 15:53:12 +02:00

Function "hook_signal_send" added to plugin API

This commit is contained in:
Sebastien Helleu
2007-12-13 11:55:50 +01:00
parent 2e74526bb9
commit 70e44d3c54
4 changed files with 19 additions and 0 deletions
+1
View File
@@ -304,6 +304,7 @@ plugin_load (char *filename)
new_plugin->hook_fd = &plugin_api_hook_fd;
new_plugin->hook_print = &plugin_api_hook_print;
new_plugin->hook_signal = &plugin_api_hook_signal;
new_plugin->hook_signal_send = &plugin_api_hook_signal_send;
new_plugin->hook_config = &plugin_api_hook_config;
new_plugin->hook_completion = &plugin_api_hook_completion;
new_plugin->unhook = &plugin_api_unhook;