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

Update of plugin API list functions

This commit is contained in:
Sebastien Helleu
2007-11-04 12:16:22 +01:00
parent 2e18be982f
commit 24bcc4de4b
7 changed files with 352 additions and 97 deletions
+12 -2
View File
@@ -231,8 +231,8 @@ plugin_load (char *filename)
new_plugin->ngettext = &plugin_api_ngettext;
new_plugin->strcasecmp = &plugin_api_strcasecmp;
new_plugin->strncasecmp = &plugin_api_strncasecmp;
new_plugin->explode_string = &plugin_api_explode_string;
new_plugin->free_exploded_string = &plugin_api_free_exploded_string;
new_plugin->string_explode = &plugin_api_string_explode;
new_plugin->string_free_exploded = &plugin_api_string_free_exploded;
new_plugin->mkdir_home = &plugin_api_mkdir_home;
new_plugin->exec_on_files = &plugin_api_exec_on_files;
@@ -262,6 +262,16 @@ plugin_load (char *filename)
new_plugin->info_get = &plugin_api_info_get;
new_plugin->list_get = &plugin_api_list_get;
new_plugin->list_next = &plugin_api_list_next;
new_plugin->list_prev = &plugin_api_list_prev;
new_plugin->list_fields = &plugin_api_list_fields;
new_plugin->list_int = &plugin_api_list_int;
new_plugin->list_string = &plugin_api_list_string;
new_plugin->list_pointer = &plugin_api_list_pointer;
new_plugin->list_time = &plugin_api_list_time;
new_plugin->list_free = &plugin_api_list_free;
new_plugin->config_get = &plugin_api_config_get;
new_plugin->config_set = &plugin_api_config_set;
new_plugin->plugin_config_get = &plugin_api_plugin_config_get;