diff options
author | Adam Saponara <as@php.net> | 2022-06-28 23:43:49 -0400 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-06-30 20:33:13 +0200 |
commit | 8cf58481163a0b7bd6a79b0a16f8f9a37dd72362 (patch) | |
tree | e1e675779d390333dd6305d822969a9e41112bdc /src | |
parent | 3e1a5b4447d2af3ebb186636f46cabd81252d0b1 (diff) | |
download | weechat-8cf58481163a0b7bd6a79b0a16f8f9a37dd72362.zip |
php: Add stubs and generate arginfo for PHP API
This was preventing the PHP plugin from working if PHP was compiled
with `--enable-debug`. With this patch, `--enable-debug` builds of
PHP should work.
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/php/weechat-php.stub.php | 423 | ||||
-rw-r--r-- | src/plugins/php/weechat-php_arginfo.h | 616 | ||||
-rw-r--r-- | src/plugins/php/weechat-php_legacy_arginfo.h | 443 |
3 files changed, 861 insertions, 621 deletions
diff --git a/src/plugins/php/weechat-php.stub.php b/src/plugins/php/weechat-php.stub.php index ba3a365fb..c57ccedab 100644 --- a/src/plugins/php/weechat-php.stub.php +++ b/src/plugins/php/weechat-php.stub.php @@ -2,213 +2,218 @@ /** @generate-legacy-arginfo */ -// TODO Match these function stubs to zend_parse_parameters, then run -// `cd src/plugins/php && ~/php-src/build/gen_stub.php` to regenerate -// weechat-php_*arginfo.h +// Keep these function stubs in sync with the API. This ensures +// `--enable-debug` builds of PHP work. After updating this file, run +// +// ``` +// cd src/plugins/php && ~/php-src/build/gen_stub.php +// ``` +// +// to regenerate `weechat-php_*arginfo.h` files. -function weechat_register(): mixed {} -function weechat_plugin_get_name(): mixed {} -function weechat_charset_set(): mixed {} -function weechat_iconv_to_internal(): mixed {} -function weechat_iconv_from_internal(): mixed {} -function weechat_gettext(): mixed {} -function weechat_ngettext(): mixed {} -function weechat_strlen_screen(): mixed {} -function weechat_string_match(): mixed {} -function weechat_string_match_list(): mixed {} -function weechat_string_has_highlight(): mixed {} -function weechat_string_has_highlight_regex(): mixed {} -function weechat_string_mask_to_regex(): mixed {} -function weechat_string_format_size(): mixed {} -function weechat_string_color_code_size(): mixed {} -function weechat_string_remove_color(): mixed {} -function weechat_string_is_command_char(): mixed {} -function weechat_string_input_for_buffer(): mixed {} -function weechat_string_eval_expression(): mixed {} -function weechat_string_eval_path_home(): mixed {} -function weechat_mkdir_home(): mixed {} -function weechat_mkdir(): mixed {} -function weechat_mkdir_parents(): mixed {} -function weechat_list_new(): mixed {} -function weechat_list_add(): mixed {} -function weechat_list_search(): mixed {} -function weechat_list_search_pos(): mixed {} -function weechat_list_casesearch(): mixed {} -function weechat_list_casesearch_pos(): mixed {} -function weechat_list_get(): mixed {} -function weechat_list_set(): mixed {} -function weechat_list_next(): mixed {} -function weechat_list_prev(): mixed {} -function weechat_list_string(): mixed {} -function weechat_list_size(): mixed {} -function weechat_list_remove(): mixed {} -function weechat_list_remove_all(): mixed {} -function weechat_list_free(): mixed {} -function weechat_config_new(): mixed {} -function weechat_config_new_section(): mixed {} -function weechat_config_search_section(): mixed {} -function weechat_config_new_option(): mixed {} -function weechat_config_search_option(): mixed {} -function weechat_config_string_to_boolean(): mixed {} -function weechat_config_option_reset(): mixed {} -function weechat_config_option_set(): mixed {} -function weechat_config_option_set_null(): mixed {} -function weechat_config_option_unset(): mixed {} -function weechat_config_option_rename(): mixed {} -function weechat_config_option_is_null(): mixed {} -function weechat_config_option_default_is_null(): mixed {} -function weechat_config_boolean(): mixed {} -function weechat_config_boolean_default(): mixed {} -function weechat_config_integer(): mixed {} -function weechat_config_integer_default(): mixed {} -function weechat_config_string(): mixed {} -function weechat_config_string_default(): mixed {} -function weechat_config_color(): mixed {} -function weechat_config_color_default(): mixed {} -function weechat_config_write_option(): mixed {} -function weechat_config_write_line(): mixed {} -function weechat_config_write(): mixed {} -function weechat_config_read(): mixed {} -function weechat_config_reload(): mixed {} -function weechat_config_option_free(): mixed {} -function weechat_config_section_free_options(): mixed {} -function weechat_config_section_free(): mixed {} -function weechat_config_free(): mixed {} -function weechat_config_get(): mixed {} -function weechat_config_get_plugin(): mixed {} -function weechat_config_is_set_plugin(): mixed {} -function weechat_config_set_plugin(): mixed {} -function weechat_config_set_desc_plugin(): mixed {} -function weechat_config_unset_plugin(): mixed {} -function weechat_key_bind(): mixed {} -function weechat_key_unbind(): mixed {} -function weechat_prefix(): mixed {} -function weechat_color(): mixed {} -function weechat_print(): mixed {} -function weechat_print_date_tags(): mixed {} -function weechat_print_y(): mixed {} -function weechat_print_y_date_tags(): mixed {} -function weechat_log_print(): mixed {} -function weechat_hook_command(): mixed {} -function weechat_hook_completion(): mixed {} -function weechat_hook_completion_get_string(): mixed {} -function weechat_hook_completion_list_add(): mixed {} -function weechat_hook_command_run(): mixed {} -function weechat_hook_timer(): mixed {} -function weechat_hook_fd(): mixed {} -function weechat_hook_process(): mixed {} -function weechat_hook_process_hashtable(): mixed {} -function weechat_hook_connect(): mixed {} -function weechat_hook_line(): mixed {} -function weechat_hook_print(): mixed {} -function weechat_hook_signal(): mixed {} -function weechat_hook_signal_send(): mixed {} -function weechat_hook_hsignal(): mixed {} -function weechat_hook_hsignal_send(): mixed {} -function weechat_hook_config(): mixed {} -function weechat_hook_modifier(): mixed {} -function weechat_hook_modifier_exec(): mixed {} -function weechat_hook_info(): mixed {} -function weechat_hook_info_hashtable(): mixed {} -function weechat_hook_infolist(): mixed {} -function weechat_hook_focus(): mixed {} -function weechat_hook_set(): mixed {} -function weechat_unhook(): mixed {} -function weechat_unhook_all(): mixed {} -function weechat_buffer_new(): mixed {} -function weechat_buffer_new_props(): mixed {} -function weechat_buffer_search(): mixed {} -function weechat_buffer_search_main(): mixed {} -function weechat_current_buffer(): mixed {} -function weechat_buffer_clear(): mixed {} -function weechat_buffer_close(): mixed {} -function weechat_buffer_merge(): mixed {} -function weechat_buffer_unmerge(): mixed {} -function weechat_buffer_get_integer(): mixed {} -function weechat_buffer_get_string(): mixed {} -function weechat_buffer_get_pointer(): mixed {} -function weechat_buffer_set(): mixed {} -function weechat_buffer_string_replace_local_var(): mixed {} -function weechat_buffer_match_list(): mixed {} -function weechat_current_window(): mixed {} -function weechat_window_search_with_buffer(): mixed {} -function weechat_window_get_integer(): mixed {} -function weechat_window_get_string(): mixed {} -function weechat_window_get_pointer(): mixed {} -function weechat_window_set_title(): mixed {} -function weechat_nicklist_add_group(): mixed {} -function weechat_nicklist_search_group(): mixed {} -function weechat_nicklist_add_nick(): mixed {} -function weechat_nicklist_search_nick(): mixed {} -function weechat_nicklist_remove_group(): mixed {} -function weechat_nicklist_remove_nick(): mixed {} -function weechat_nicklist_remove_all(): mixed {} -function weechat_nicklist_group_get_integer(): mixed {} -function weechat_nicklist_group_get_string(): mixed {} -function weechat_nicklist_group_get_pointer(): mixed {} -function weechat_nicklist_group_set(): mixed {} -function weechat_nicklist_nick_get_integer(): mixed {} -function weechat_nicklist_nick_get_string(): mixed {} -function weechat_nicklist_nick_get_pointer(): mixed {} -function weechat_nicklist_nick_set(): mixed {} -function weechat_bar_item_search(): mixed {} -function weechat_bar_item_new(): mixed {} -function weechat_bar_item_update(): mixed {} -function weechat_bar_item_remove(): mixed {} -function weechat_bar_search(): mixed {} -function weechat_bar_new(): mixed {} -function weechat_bar_set(): mixed {} -function weechat_bar_update(): mixed {} -function weechat_bar_remove(): mixed {} -function weechat_command(): mixed {} -function weechat_command_options(): mixed {} -function weechat_completion_new(): mixed {} -function weechat_completion_search(): mixed {} -function weechat_completion_get_string(): mixed {} -function weechat_completion_list_add(): mixed {} -function weechat_completion_free(): mixed {} -function weechat_info_get(): mixed {} -function weechat_info_get_hashtable(): mixed {} -function weechat_infolist_new(): mixed {} -function weechat_infolist_new_item(): mixed {} -function weechat_infolist_new_var_integer(): mixed {} -function weechat_infolist_new_var_string(): mixed {} -function weechat_infolist_new_var_pointer(): mixed {} -function weechat_infolist_new_var_time(): mixed {} -function weechat_infolist_search_var(): mixed {} -function weechat_infolist_get(): mixed {} -function weechat_infolist_next(): mixed {} -function weechat_infolist_prev(): mixed {} -function weechat_infolist_reset_item_cursor(): mixed {} -function weechat_infolist_fields(): mixed {} -function weechat_infolist_integer(): mixed {} -function weechat_infolist_string(): mixed {} -function weechat_infolist_pointer(): mixed {} -function weechat_infolist_time(): mixed {} -function weechat_infolist_free(): mixed {} -function weechat_hdata_get(): mixed {} -function weechat_hdata_get_var_offset(): mixed {} -function weechat_hdata_get_var_type_string(): mixed {} -function weechat_hdata_get_var_array_size(): mixed {} -function weechat_hdata_get_var_array_size_string(): mixed {} -function weechat_hdata_get_var_hdata(): mixed {} -function weechat_hdata_get_list(): mixed {} -function weechat_hdata_check_pointer(): mixed {} -function weechat_hdata_move(): mixed {} -function weechat_hdata_search(): mixed {} -function weechat_hdata_char(): mixed {} -function weechat_hdata_integer(): mixed {} -function weechat_hdata_long(): mixed {} -function weechat_hdata_string(): mixed {} -function weechat_hdata_pointer(): mixed {} -function weechat_hdata_time(): mixed {} -function weechat_hdata_hashtable(): mixed {} -function weechat_hdata_compare(): mixed {} -function weechat_hdata_update(): mixed {} -function weechat_hdata_get_string(): mixed {} -function weechat_upgrade_new(): mixed {} -function weechat_upgrade_write_object(): mixed {} -function weechat_upgrade_read(): mixed {} -function weechat_upgrade_close(): mixed {} -function forget_class(): mixed {} -function forget_function(): mixed {} +function weechat_register(string $p0, string $p1, string $p2, string $p3, string $p4, mixed $p5, string $p6): int {} +function weechat_plugin_get_name(string $p0): string {} +function weechat_charset_set(string $p0): int {} +function weechat_iconv_to_internal(string $p0, string $p1): string {} +function weechat_iconv_from_internal(string $p0, string $p1): string {} +function weechat_gettext(string $p0): string {} +function weechat_ngettext(string $p0, string $p1, int $p2): string {} +function weechat_strlen_screen(string $p0): int {} +function weechat_string_match(string $p0, string $p1, int $p2): int {} +function weechat_string_match_list(string $p0, string $p1, int $p2): int {} +function weechat_string_has_highlight(string $p0, string $p1): int {} +function weechat_string_has_highlight_regex(string $p0, string $p1): int {} +function weechat_string_mask_to_regex(string $p0): string {} +function weechat_string_format_size(int $p0): string {} +function weechat_string_color_code_size(string $p0): int {} +function weechat_string_remove_color(string $p0, string $p1): string {} +function weechat_string_is_command_char(string $p0): int {} +function weechat_string_input_for_buffer(string $p0): string {} +function weechat_string_eval_expression(string $p0, array $p1, array $p2, array $p3): string {} +function weechat_string_eval_path_home(string $p0, array $p1, array $p2, array $p3): string {} +function weechat_mkdir_home(string $p0, int $p1): int {} +function weechat_mkdir(string $p0, int $p1): int {} +function weechat_mkdir_parents(string $p0, int $p1): int {} +function weechat_list_new(): string {} +function weechat_list_add(string $p0, string $p1, string $p2, string $p3): string {} +function weechat_list_search(string $p0, string $p1): string {} +function weechat_list_search_pos(string $p0, string $p1): int {} +function weechat_list_casesearch(string $p0, string $p1): string {} +function weechat_list_casesearch_pos(string $p0, string $p1): int {} +function weechat_list_get(string $p0, int $p1): string {} +function weechat_list_set(string $p0, string $p1): int {} +function weechat_list_next(string $p0): string {} +function weechat_list_prev(string $p0): string {} +function weechat_list_string(string $p0): string {} +function weechat_list_size(string $p0): int {} +function weechat_list_remove(string $p0, string $p1): int {} +function weechat_list_remove_all(string $p0): int {} +function weechat_list_free(string $p0): int {} +function weechat_config_new(string $p0, mixed $p1, string $p2): string {} +function weechat_config_new_section(): string {} +function weechat_config_search_section(string $p0, string $p1): string {} +function weechat_config_new_option(): string {} +function weechat_config_search_option(string $p0, string $p1, string $p2): string {} +function weechat_config_string_to_boolean(string $p0): int {} +function weechat_config_option_reset(string $p0, int $p1): int {} +function weechat_config_option_set(string $p0, string $p1, int $p2): int {} +function weechat_config_option_set_null(string $p0, int $p1): int {} +function weechat_config_option_unset(string $p0): int {} +function weechat_config_option_rename(string $p0, string $p1): int {} +function weechat_config_option_is_null(string $p0): int {} +function weechat_config_option_default_is_null(string $p0): int {} +function weechat_config_boolean(string $p0): int {} +function weechat_config_boolean_default(string $p0): int {} +function weechat_config_integer(string $p0): int {} +function weechat_config_integer_default(string $p0): int {} +function weechat_config_string(string $p0): string {} +function weechat_config_string_default(string $p0): string {} +function weechat_config_color(string $p0): string {} +function weechat_config_color_default(string $p0): string {} +function weechat_config_write_option(string $p0, string $p1): int {} +function weechat_config_write_line(string $p0, string $p1, string $p2): int {} +function weechat_config_write(string $p0): int {} +function weechat_config_read(string $p0): int {} +function weechat_config_reload(string $p0): int {} +function weechat_config_option_free(string $p0): int {} +function weechat_config_section_free_options(string $p0): int {} +function weechat_config_section_free(string $p0): int {} +function weechat_config_free(string $p0): int {} +function weechat_config_get(string $p0): string {} +function weechat_config_get_plugin(string $p0): string {} +function weechat_config_is_set_plugin(string $p0): int {} +function weechat_config_set_plugin(string $p0, string $p1): int {} +function weechat_config_set_desc_plugin(string $p0, string $p1): int {} +function weechat_config_unset_plugin(string $p0): int {} +function weechat_key_bind(string $p0, array $p1): int {} +function weechat_key_unbind(string $p0, string $p1): int {} +function weechat_prefix(string $p0): string {} +function weechat_color(string $p0): string {} +function weechat_print(string $p0, string $p1): int {} +function weechat_print_date_tags(string $p0, int $p1, string $p2, string $p3): int {} +function weechat_print_y(string $p0, int $p1, string $p2): int {} +function weechat_print_y_date_tags(string $p0, int $p1, int $p2, string $p3, string $p4): int {} +function weechat_log_print(string $p0): int {} +function weechat_hook_command(string $p0, string $p1, string $p2, string $p3, string $p4, mixed $p5, string $p6): string {} +function weechat_hook_completion(string $p0, string $p1, mixed $p2, string $p3): string {} +function weechat_hook_completion_get_string(string $p0, string $p1): string {} +function weechat_hook_completion_list_add(string $p0, string $p1, int $p2, string $p3): int {} +function weechat_hook_command_run(string $p0, mixed $p1, string $p2): string {} +function weechat_hook_timer(int $p0, int $p1, int $p2, mixed $p3, string $p4): string {} +function weechat_hook_fd(int $p0, int $p1, int $p2, int $p3, mixed $p4, string $p5): string {} +function weechat_hook_process(string $p0, int $p1, mixed $p2, string $p3): string {} +function weechat_hook_process_hashtable(string $p0, array $p1, int $p2, mixed $p3, string $p4): string {} +function weechat_hook_connect(): string {} +function weechat_hook_line(string $p0, string $p1, string $p2, mixed $p3, string $p4): string {} +function weechat_hook_print(string $p0, string $p1, string $p2, int $p3, mixed $p4, string $p5): string {} +function weechat_hook_signal(string $p0, mixed $p1, string $p2): string {} +function weechat_hook_signal_send(string $p0, string $p1, string $p2): int {} +function weechat_hook_hsignal(string $p0, mixed $p1, string $p2): string {} +function weechat_hook_hsignal_send(string $p0, array $p1): int {} +function weechat_hook_config(string $p0, mixed $p1, string $p2): string {} +function weechat_hook_modifier(string $p0, mixed $p1, string $p2): string {} +function weechat_hook_modifier_exec(string $p0, string $p1, string $p2): string {} +function weechat_hook_info(string $p0, string $p1, string $p2, mixed $p3, string $p4): string {} +function weechat_hook_info_hashtable(string $p0, string $p1, string $p2, string $p3, string $p4, mixed $p5, string $p6): string {} +function weechat_hook_infolist(string $p0, string $p1, string $p2, string $p3, mixed $p4, string $p5): string {} +function weechat_hook_focus(string $p0, mixed $p1, string $p2): string {} +function weechat_hook_set(string $p0, string $p1, string $p2): int {} +function weechat_unhook(string $p0): int {} +function weechat_unhook_all(string $p0): int {} +function weechat_buffer_new(string $p0, mixed $p1, string $p2, mixed $p3, string $p4): string {} +function weechat_buffer_new_props(string $p0, array $p1, mixed $p2, string $p3, mixed $p4, string $p5): string {} +function weechat_buffer_search(string $p0, string $p1): string {} +function weechat_buffer_search_main(): string {} +function weechat_current_buffer(): string {} +function weechat_buffer_clear(string $p0): int {} +function weechat_buffer_close(string $p0): int {} +function weechat_buffer_merge(string $p0, string $p1): int {} +function weechat_buffer_unmerge(string $p0, int $p1): int {} +function weechat_buffer_get_integer(string $p0, string $p1): int {} +function weechat_buffer_get_string(string $p0, string $p1): string {} +function weechat_buffer_get_pointer(string $p0, string $p1): string {} +function weechat_buffer_set(string $p0, string $p1, string $p2): int {} +function weechat_buffer_string_replace_local_var(string $p0, string $p1): string {} +function weechat_buffer_match_list(string $p0, string $p1): int {} +function weechat_current_window(): string {} +function weechat_window_search_with_buffer(string $p0): string {} +function weechat_window_get_integer(string $p0, string $p1): int {} +function weechat_window_get_string(string $p0, string $p1): string {} +function weechat_window_get_pointer(string $p0, string $p1): string {} +function weechat_window_set_title(string $p0): int {} +function weechat_nicklist_add_group(string $p0, string $p1, string $p2, string $p3, int $p4): string {} +function weechat_nicklist_search_group(string $p0, string $p1, string $p2): string {} +function weechat_nicklist_add_nick(string $p0, string $p1, string $p2, string $p3, string $p4, string $p5, int $p6): string {} +function weechat_nicklist_search_nick(string $p0, string $p1, string $p2): string {} +function weechat_nicklist_remove_group(string $p0, string $p1): int {} +function weechat_nicklist_remove_nick(string $p0, string $p1): int {} +function weechat_nicklist_remove_all(string $p0): int {} +function weechat_nicklist_group_get_integer(string $p0, string $p1, string $p2): int {} +function weechat_nicklist_group_get_string(string $p0, string $p1, string $p2): string {} +function weechat_nicklist_group_get_pointer(string $p0, string $p1, string $p2): string {} +function weechat_nicklist_group_set(string $p0, string $p1, string $p2, string $p3): int {} +function weechat_nicklist_nick_get_integer(string $p0, string $p1, string $p2): int {} +function weechat_nicklist_nick_get_string(string $p0, string $p1, string $p2): string {} +function weechat_nicklist_nick_get_pointer(string $p0, string $p1, string $p2): string {} +function weechat_nicklist_nick_set(string $p0, string $p1, string $p2, string $p3): int {} +function weechat_bar_item_search(string $p0): string {} +function weechat_bar_item_new(string $p0, mixed $p1, string $p2): string {} +function weechat_bar_item_update(string $p0): int {} +function weechat_bar_item_remove(string $p0): int {} +function weechat_bar_search(string $p0): string {} +function weechat_bar_new(): string {} +function weechat_bar_set(string $p0, string $p1, string $p2): int {} +function weechat_bar_update(string $p0): int {} +function weechat_bar_remove(string $p0): int {} +function weechat_command(string $p0, string $p1): int {} +function weechat_command_options(string $p0, string $p1, array $p2): int {} +function weechat_completion_new(string $p0): string {} +function weechat_completion_search(string $p0, string $p1, int $p2, int $p3): int {} +function weechat_completion_get_string(string $p0, string $p1): string {} +function weechat_completion_list_add(string $p0, string $p1, int $p2, string $p3): int {} +function weechat_completion_free(string $p0): int {} +function weechat_info_get(string $p0, string $p1): string {} +function weechat_info_get_hashtable(string $p0, array $p1): void {} +function weechat_infolist_new(): string {} +function weechat_infolist_new_item(string $p0): string {} +function weechat_infolist_new_var_integer(string $p0, string $p1, int $p2): string {} +function weechat_infolist_new_var_string(string $p0, string $p1, string $p2): string {} +function weechat_infolist_new_var_pointer(string $p0, string $p1, string $p2): string {} +function weechat_infolist_new_var_time(string $p0, string $p1, int $p2): string {} +function weechat_infolist_search_var(string $p0, string $p1): string {} +function weechat_infolist_get(string $p0, string $p1, string $p2): string {} +function weechat_infolist_next(string $p0): int {} +function weechat_infolist_prev(string $p0): int {} +function weechat_infolist_reset_item_cursor(string $p0): int {} +function weechat_infolist_fields(string $p0): string {} +function weechat_infolist_integer(string $p0, string $p1): int {} +function weechat_infolist_string(string $p0, string $p1): string {} +function weechat_infolist_pointer(string $p0, string $p1): string {} +function weechat_infolist_time(string $p0, string $p1): int {} +function weechat_infolist_free(string $p0): int {} +function weechat_hdata_get(string $p0): string {} +function weechat_hdata_get_var_offset(string $p0, string $p1): int {} +function weechat_hdata_get_var_type_string(string $p0, string $p1): string {} +function weechat_hdata_get_var_array_size(string $p0, string $p1, string $p2): int {} +function weechat_hdata_get_var_array_size_string(string $p0, string $p1, string $p2): string {} +function weechat_hdata_get_var_hdata(string $p0, string $p1): string {} +function weechat_hdata_get_list(string $p0, string $p1): string {} +function weechat_hdata_check_pointer(string $p0, string $p1, string $p2): int {} +function weechat_hdata_move(string $p0, string $p1, int $p2): string {} +function weechat_hdata_search(string $p0, string $p1, string $p2, array $p3, array $p4, array $p5, int $p6): string {} +function weechat_hdata_char(string $p0, string $p1, string $p2): int {} +function weechat_hdata_integer(string $p0, string $p1, string $p2): int {} +function weechat_hdata_long(string $p0, string $p1, string $p2): int {} +function weechat_hdata_string(string $p0, string $p1, string $p2): string {} +function weechat_hdata_pointer(string $p0, string $p1, string $p2): string {} +function weechat_hdata_time(string $p0, string $p1, string $p2): int {} +function weechat_hdata_hashtable(string $p0, string $p1, string $p2): void {} +function weechat_hdata_compare(string $p0, string $p1, string $p2, string $p3, int $p4): int {} +function weechat_hdata_update(string $p0, string $p1, array $p2): int {} +function weechat_hdata_get_string(string $p0, string $p1): string {} +function weechat_upgrade_new(string $p0, mixed $p1, string $p2): string {} +function weechat_upgrade_write_object(string $p0, int $p1, string $p2): int {} +function weechat_upgrade_read(string $p0): int {} +function weechat_upgrade_close(string $p0): int {} +function forget_class(string $p0): bool {} +function forget_function(string $p0): bool {} diff --git a/src/plugins/php/weechat-php_arginfo.h b/src/plugins/php/weechat-php_arginfo.h index b963c6e08..a36899771 100644 --- a/src/plugins/php/weechat-php_arginfo.h +++ b/src/plugins/php/weechat-php_arginfo.h @@ -1,415 +1,615 @@ /* This is a generated file, edit the .stub.php file instead. - * Stub hash: c320ac3c03cc39d1ded220999e373af26be4b56c */ - -ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_register, 0, 0, IS_MIXED, 0) + * Stub hash: a89a2f8dfa145afbf1c86bf246715c88babebb07 */ + +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_register, 0, 7, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p4, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p5, IS_MIXED, 0) + ZEND_ARG_TYPE_INFO(0, p6, IS_STRING, 0) ZEND_END_ARG_INFO() -#define arginfo_weechat_plugin_get_name arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_plugin_get_name, 0, 1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_charset_set arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_charset_set, 0, 1, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_iconv_to_internal arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_iconv_to_internal, 0, 2, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_iconv_from_internal arginfo_weechat_register +#define arginfo_weechat_iconv_from_internal arginfo_weechat_iconv_to_internal -#define arginfo_weechat_gettext arginfo_weechat_register +#define arginfo_weechat_gettext arginfo_weechat_plugin_get_name -#define arginfo_weechat_ngettext arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_ngettext, 0, 3, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_LONG, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_strlen_screen arginfo_weechat_register +#define arginfo_weechat_strlen_screen arginfo_weechat_charset_set -#define arginfo_weechat_string_match arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_string_match, 0, 3, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_LONG, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_string_match_list arginfo_weechat_register +#define arginfo_weechat_string_match_list arginfo_weechat_string_match -#define arginfo_weechat_string_has_highlight arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_string_has_highlight, 0, 2, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_string_has_highlight_regex arginfo_weechat_register +#define arginfo_weechat_string_has_highlight_regex arginfo_weechat_string_has_highlight -#define arginfo_weechat_string_mask_to_regex arginfo_weechat_register +#define arginfo_weechat_string_mask_to_regex arginfo_weechat_plugin_get_name -#define arginfo_weechat_string_format_size arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_string_format_size, 0, 1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_LONG, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_string_color_code_size arginfo_weechat_register +#define arginfo_weechat_string_color_code_size arginfo_weechat_charset_set -#define arginfo_weechat_string_remove_color arginfo_weechat_register +#define arginfo_weechat_string_remove_color arginfo_weechat_iconv_to_internal -#define arginfo_weechat_string_is_command_char arginfo_weechat_register +#define arginfo_weechat_string_is_command_char arginfo_weechat_charset_set -#define arginfo_weechat_string_input_for_buffer arginfo_weechat_register +#define arginfo_weechat_string_input_for_buffer arginfo_weechat_plugin_get_name -#define arginfo_weechat_string_eval_expression arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_string_eval_expression, 0, 4, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_ARRAY, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_ARRAY, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_ARRAY, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_string_eval_path_home arginfo_weechat_register +#define arginfo_weechat_string_eval_path_home arginfo_weechat_string_eval_expression -#define arginfo_weechat_mkdir_home arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_mkdir_home, 0, 2, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_LONG, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_mkdir arginfo_weechat_register +#define arginfo_weechat_mkdir arginfo_weechat_mkdir_home -#define arginfo_weechat_mkdir_parents arginfo_weechat_register +#define arginfo_weechat_mkdir_parents arginfo_weechat_mkdir_home -#define arginfo_weechat_list_new arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_list_new, 0, 0, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_list_add arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_list_add, 0, 4, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_list_search arginfo_weechat_register +#define arginfo_weechat_list_search arginfo_weechat_iconv_to_internal -#define arginfo_weechat_list_search_pos arginfo_weechat_register +#define arginfo_weechat_list_search_pos arginfo_weechat_string_has_highlight -#define arginfo_weechat_list_casesearch arginfo_weechat_register +#define arginfo_weechat_list_casesearch arginfo_weechat_iconv_to_internal -#define arginfo_weechat_list_casesearch_pos arginfo_weechat_register +#define arginfo_weechat_list_casesearch_pos arginfo_weechat_string_has_highlight -#define arginfo_weechat_list_get arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_list_get, 0, 2, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_LONG, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_list_set arginfo_weechat_register +#define arginfo_weechat_list_set arginfo_weechat_string_has_highlight -#define arginfo_weechat_list_next arginfo_weechat_register +#define arginfo_weechat_list_next arginfo_weechat_plugin_get_name -#define arginfo_weechat_list_prev arginfo_weechat_register +#define arginfo_weechat_list_prev arginfo_weechat_plugin_get_name -#define arginfo_weechat_list_string arginfo_weechat_register +#define arginfo_weechat_list_string arginfo_weechat_plugin_get_name -#define arginfo_weechat_list_size arginfo_weechat_register +#define arginfo_weechat_list_size arginfo_weechat_charset_set -#define arginfo_weechat_list_remove arginfo_weechat_register +#define arginfo_weechat_list_remove arginfo_weechat_string_has_highlight -#define arginfo_weechat_list_remove_all arginfo_weechat_register +#define arginfo_weechat_list_remove_all arginfo_weechat_charset_set -#define arginfo_weechat_list_free arginfo_weechat_register +#define arginfo_weechat_list_free arginfo_weechat_charset_set -#define arginfo_weechat_config_new arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_config_new, 0, 3, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_MIXED, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_config_new_section arginfo_weechat_register +#define arginfo_weechat_config_new_section arginfo_weechat_list_new -#define arginfo_weechat_config_search_section arginfo_weechat_register +#define arginfo_weechat_config_search_section arginfo_weechat_iconv_to_internal -#define arginfo_weechat_config_new_option arginfo_weechat_register +#define arginfo_weechat_config_new_option arginfo_weechat_list_new -#define arginfo_weechat_config_search_option arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_config_search_option, 0, 3, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_config_string_to_boolean arginfo_weechat_register +#define arginfo_weechat_config_string_to_boolean arginfo_weechat_charset_set -#define arginfo_weechat_config_option_reset arginfo_weechat_register +#define arginfo_weechat_config_option_reset arginfo_weechat_mkdir_home -#define arginfo_weechat_config_option_set arginfo_weechat_register +#define arginfo_weechat_config_option_set arginfo_weechat_string_match -#define arginfo_weechat_config_option_set_null arginfo_weechat_register +#define arginfo_weechat_config_option_set_null arginfo_weechat_mkdir_home -#define arginfo_weechat_config_option_unset arginfo_weechat_register +#define arginfo_weechat_config_option_unset arginfo_weechat_charset_set -#define arginfo_weechat_config_option_rename arginfo_weechat_register +#define arginfo_weechat_config_option_rename arginfo_weechat_string_has_highlight -#define arginfo_weechat_config_option_is_null arginfo_weechat_register +#define arginfo_weechat_config_option_is_null arginfo_weechat_charset_set -#define arginfo_weechat_config_option_default_is_null arginfo_weechat_register +#define arginfo_weechat_config_option_default_is_null arginfo_weechat_charset_set -#define arginfo_weechat_config_boolean arginfo_weechat_register +#define arginfo_weechat_config_boolean arginfo_weechat_charset_set -#define arginfo_weechat_config_boolean_default arginfo_weechat_register +#define arginfo_weechat_config_boolean_default arginfo_weechat_charset_set -#define arginfo_weechat_config_integer arginfo_weechat_register +#define arginfo_weechat_config_integer arginfo_weechat_charset_set -#define arginfo_weechat_config_integer_default arginfo_weechat_register +#define arginfo_weechat_config_integer_default arginfo_weechat_charset_set -#define arginfo_weechat_config_string arginfo_weechat_register +#define arginfo_weechat_config_string arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_string_default arginfo_weechat_register +#define arginfo_weechat_config_string_default arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_color arginfo_weechat_register +#define arginfo_weechat_config_color arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_color_default arginfo_weechat_register +#define arginfo_weechat_config_color_default arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_write_option arginfo_weechat_register +#define arginfo_weechat_config_write_option arginfo_weechat_string_has_highlight -#define arginfo_weechat_config_write_line arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_config_write_line, 0, 3, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_config_write arginfo_weechat_register +#define arginfo_weechat_config_write arginfo_weechat_charset_set -#define arginfo_weechat_config_read arginfo_weechat_register +#define arginfo_weechat_config_read arginfo_weechat_charset_set -#define arginfo_weechat_config_reload arginfo_weechat_register +#define arginfo_weechat_config_reload arginfo_weechat_charset_set -#define arginfo_weechat_config_option_free arginfo_weechat_register +#define arginfo_weechat_config_option_free arginfo_weechat_charset_set -#define arginfo_weechat_config_section_free_options arginfo_weechat_register +#define arginfo_weechat_config_section_free_options arginfo_weechat_charset_set -#define arginfo_weechat_config_section_free arginfo_weechat_register +#define arginfo_weechat_config_section_free arginfo_weechat_charset_set -#define arginfo_weechat_config_free arginfo_weechat_register +#define arginfo_weechat_config_free arginfo_weechat_charset_set -#define arginfo_weechat_config_get arginfo_weechat_register +#define arginfo_weechat_config_get arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_get_plugin arginfo_weechat_register +#define arginfo_weechat_config_get_plugin arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_is_set_plugin arginfo_weechat_register +#define arginfo_weechat_config_is_set_plugin arginfo_weechat_charset_set -#define arginfo_weechat_config_set_plugin arginfo_weechat_register +#define arginfo_weechat_config_set_plugin arginfo_weechat_string_has_highlight -#define arginfo_weechat_config_set_desc_plugin arginfo_weechat_register +#define arginfo_weechat_config_set_desc_plugin arginfo_weechat_string_has_highlight -#define arginfo_weechat_config_unset_plugin arginfo_weechat_register +#define arginfo_weechat_config_unset_plugin arginfo_weechat_charset_set -#define arginfo_weechat_key_bind arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_key_bind, 0, 2, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_ARRAY, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_key_unbind arginfo_weechat_register +#define arginfo_weechat_key_unbind arginfo_weechat_string_has_highlight -#define arginfo_weechat_prefix arginfo_weechat_register +#define arginfo_weechat_prefix arginfo_weechat_plugin_get_name -#define arginfo_weechat_color arginfo_weechat_register +#define arginfo_weechat_color arginfo_weechat_plugin_get_name -#define arginfo_weechat_print arginfo_weechat_register +#define arginfo_weechat_print arginfo_weechat_string_has_highlight -#define arginfo_weechat_print_date_tags arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_print_date_tags, 0, 4, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_print_y arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_print_y, 0, 3, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_print_y_date_tags arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_print_y_date_tags, 0, 5, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p4, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_log_print arginfo_weechat_register +#define arginfo_weechat_log_print arginfo_weechat_charset_set -#define arginfo_weechat_hook_command arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_hook_command, 0, 7, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p4, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p5, IS_MIXED, 0) + ZEND_ARG_TYPE_INFO(0, p6, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_hook_completion arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_hook_completion, 0, 4, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_MIXED, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_hook_completion_get_string arginfo_weechat_register +#define arginfo_weechat_hook_completion_get_string arginfo_weechat_iconv_to_internal -#define arginfo_weechat_hook_completion_list_add arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_hook_completion_list_add, 0, 4, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_hook_command_run arginfo_weechat_register +#define arginfo_weechat_hook_command_run arginfo_weechat_config_new -#define arginfo_weechat_hook_timer arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_hook_timer, 0, 5, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_MIXED, 0) + ZEND_ARG_TYPE_INFO(0, p4, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_hook_fd arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_hook_fd, 0, 6, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p4, IS_MIXED, 0) + ZEND_ARG_TYPE_INFO(0, p5, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_hook_process arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_hook_process, 0, 4, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_MIXED, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_hook_process_hashtable arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_hook_process_hashtable, 0, 5, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_ARRAY, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_MIXED, 0) + ZEND_ARG_TYPE_INFO(0, p4, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_hook_connect arginfo_weechat_register +#define arginfo_weechat_hook_connect arginfo_weechat_list_new -#define arginfo_weechat_hook_line arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_hook_line, 0, 5, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_MIXED, 0) + ZEND_ARG_TYPE_INFO(0, p4, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_hook_print arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_hook_print, 0, 6, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p4, IS_MIXED, 0) + ZEND_ARG_TYPE_INFO(0, p5, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_hook_signal arginfo_weechat_register +#define arginfo_weechat_hook_signal arginfo_weechat_config_new -#define arginfo_weechat_hook_signal_send arginfo_weechat_register +#define arginfo_weechat_hook_signal_send arginfo_weechat_config_write_line -#define arginfo_weechat_hook_hsignal arginfo_weechat_register +#define arginfo_weechat_hook_hsignal arginfo_weechat_config_new -#define arginfo_weechat_hook_hsignal_send arginfo_weechat_register +#define arginfo_weechat_hook_hsignal_send arginfo_weechat_key_bind -#define arginfo_weechat_hook_config arginfo_weechat_register +#define arginfo_weechat_hook_config arginfo_weechat_config_new -#define arginfo_weechat_hook_modifier arginfo_weechat_register +#define arginfo_weechat_hook_modifier arginfo_weechat_config_new -#define arginfo_weechat_hook_modifier_exec arginfo_weechat_register +#define arginfo_weechat_hook_modifier_exec arginfo_weechat_config_search_option -#define arginfo_weechat_hook_info arginfo_weechat_register +#define arginfo_weechat_hook_info arginfo_weechat_hook_line -#define arginfo_weechat_hook_info_hashtable arginfo_weechat_register +#define arginfo_weechat_hook_info_hashtable arginfo_weechat_hook_command -#define arginfo_weechat_hook_infolist arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_hook_infolist, 0, 6, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p4, IS_MIXED, 0) + ZEND_ARG_TYPE_INFO(0, p5, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_hook_focus arginfo_weechat_register +#define arginfo_weechat_hook_focus arginfo_weechat_config_new -#define arginfo_weechat_hook_set arginfo_weechat_register +#define arginfo_weechat_hook_set arginfo_weechat_config_write_line -#define arginfo_weechat_unhook arginfo_weechat_register +#define arginfo_weechat_unhook arginfo_weechat_charset_set -#define arginfo_weechat_unhook_all arginfo_weechat_register +#define arginfo_weechat_unhook_all arginfo_weechat_charset_set -#define arginfo_weechat_buffer_new arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_buffer_new, 0, 5, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_MIXED, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_MIXED, 0) + ZEND_ARG_TYPE_INFO(0, p4, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_buffer_new_props arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_buffer_new_props, 0, 6, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_ARRAY, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_MIXED, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p4, IS_MIXED, 0) + ZEND_ARG_TYPE_INFO(0, p5, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_buffer_search arginfo_weechat_register +#define arginfo_weechat_buffer_search arginfo_weechat_iconv_to_internal -#define arginfo_weechat_buffer_search_main arginfo_weechat_register +#define arginfo_weechat_buffer_search_main arginfo_weechat_list_new -#define arginfo_weechat_current_buffer arginfo_weechat_register +#define arginfo_weechat_current_buffer arginfo_weechat_list_new -#define arginfo_weechat_buffer_clear arginfo_weechat_register +#define arginfo_weechat_buffer_clear arginfo_weechat_charset_set -#define arginfo_weechat_buffer_close arginfo_weechat_register +#define arginfo_weechat_buffer_close arginfo_weechat_charset_set -#define arginfo_weechat_buffer_merge arginfo_weechat_register +#define arginfo_weechat_buffer_merge arginfo_weechat_string_has_highlight -#define arginfo_weechat_buffer_unmerge arginfo_weechat_register +#define arginfo_weechat_buffer_unmerge arginfo_weechat_mkdir_home -#define arginfo_weechat_buffer_get_integer arginfo_weechat_register +#define arginfo_weechat_buffer_get_integer arginfo_weechat_string_has_highlight -#define arginfo_weechat_buffer_get_string arginfo_weechat_register +#define arginfo_weechat_buffer_get_string arginfo_weechat_iconv_to_internal -#define arginfo_weechat_buffer_get_pointer arginfo_weechat_register +#define arginfo_weechat_buffer_get_pointer arginfo_weechat_iconv_to_internal -#define arginfo_weechat_buffer_set arginfo_weechat_register +#define arginfo_weechat_buffer_set arginfo_weechat_config_write_line -#define arginfo_weechat_buffer_string_replace_local_var arginfo_weechat_register +#define arginfo_weechat_buffer_string_replace_local_var arginfo_weechat_iconv_to_internal -#define arginfo_weechat_buffer_match_list arginfo_weechat_register +#define arginfo_weechat_buffer_match_list arginfo_weechat_string_has_highlight -#define arginfo_weechat_current_window arginfo_weechat_register +#define arginfo_weechat_current_window arginfo_weechat_list_new -#define arginfo_weechat_window_search_with_buffer arginfo_weechat_register +#define arginfo_weechat_window_search_with_buffer arginfo_weechat_plugin_get_name -#define arginfo_weechat_window_get_integer arginfo_weechat_register +#define arginfo_weechat_window_get_integer arginfo_weechat_string_has_highlight -#define arginfo_weechat_window_get_string arginfo_weechat_register +#define arginfo_weechat_window_get_string arginfo_weechat_iconv_to_internal -#define arginfo_weechat_window_get_pointer arginfo_weechat_register +#define arginfo_weechat_window_get_pointer arginfo_weechat_iconv_to_internal -#define arginfo_weechat_window_set_title arginfo_weechat_register +#define arginfo_weechat_window_set_title arginfo_weechat_charset_set -#define arginfo_weechat_nicklist_add_group arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_nicklist_add_group, 0, 5, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p4, IS_LONG, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_nicklist_search_group arginfo_weechat_register +#define arginfo_weechat_nicklist_search_group arginfo_weechat_config_search_option -#define arginfo_weechat_nicklist_add_nick arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_nicklist_add_nick, 0, 7, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p4, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p5, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p6, IS_LONG, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_nicklist_search_nick arginfo_weechat_register +#define arginfo_weechat_nicklist_search_nick arginfo_weechat_config_search_option -#define arginfo_weechat_nicklist_remove_group arginfo_weechat_register +#define arginfo_weechat_nicklist_remove_group arginfo_weechat_string_has_highlight -#define arginfo_weechat_nicklist_remove_nick arginfo_weechat_register +#define arginfo_weechat_nicklist_remove_nick arginfo_weechat_string_has_highlight -#define arginfo_weechat_nicklist_remove_all arginfo_weechat_register +#define arginfo_weechat_nicklist_remove_all arginfo_weechat_charset_set -#define arginfo_weechat_nicklist_group_get_integer arginfo_weechat_register +#define arginfo_weechat_nicklist_group_get_integer arginfo_weechat_config_write_line -#define arginfo_weechat_nicklist_group_get_string arginfo_weechat_register +#define arginfo_weechat_nicklist_group_get_string arginfo_weechat_config_search_option -#define arginfo_weechat_nicklist_group_get_pointer arginfo_weechat_register +#define arginfo_weechat_nicklist_group_get_pointer arginfo_weechat_config_search_option -#define arginfo_weechat_nicklist_group_set arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_nicklist_group_set, 0, 4, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_nicklist_nick_get_integer arginfo_weechat_register +#define arginfo_weechat_nicklist_nick_get_integer arginfo_weechat_config_write_line -#define arginfo_weechat_nicklist_nick_get_string arginfo_weechat_register +#define arginfo_weechat_nicklist_nick_get_string arginfo_weechat_config_search_option -#define arginfo_weechat_nicklist_nick_get_pointer arginfo_weechat_register +#define arginfo_weechat_nicklist_nick_get_pointer arginfo_weechat_config_search_option -#define arginfo_weechat_nicklist_nick_set arginfo_weechat_register +#define arginfo_weechat_nicklist_nick_set arginfo_weechat_nicklist_group_set -#define arginfo_weechat_bar_item_search arginfo_weechat_register +#define arginfo_weechat_bar_item_search arginfo_weechat_plugin_get_name -#define arginfo_weechat_bar_item_new arginfo_weechat_register +#define arginfo_weechat_bar_item_new arginfo_weechat_config_new -#define arginfo_weechat_bar_item_update arginfo_weechat_register +#define arginfo_weechat_bar_item_update arginfo_weechat_charset_set -#define arginfo_weechat_bar_item_remove arginfo_weechat_register +#define arginfo_weechat_bar_item_remove arginfo_weechat_charset_set -#define arginfo_weechat_bar_search arginfo_weechat_register +#define arginfo_weechat_bar_search arginfo_weechat_plugin_get_name -#define arginfo_weechat_bar_new arginfo_weechat_register +#define arginfo_weechat_bar_new arginfo_weechat_list_new -#define arginfo_weechat_bar_set arginfo_weechat_register +#define arginfo_weechat_bar_set arginfo_weechat_config_write_line -#define arginfo_weechat_bar_update arginfo_weechat_register +#define arginfo_weechat_bar_update arginfo_weechat_charset_set -#define arginfo_weechat_bar_remove arginfo_weechat_register +#define arginfo_weechat_bar_remove arginfo_weechat_charset_set -#define arginfo_weechat_command arginfo_weechat_register +#define arginfo_weechat_command arginfo_weechat_string_has_highlight -#define arginfo_weechat_command_options arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_command_options, 0, 3, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_ARRAY, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_completion_new arginfo_weechat_register +#define arginfo_weechat_completion_new arginfo_weechat_plugin_get_name -#define arginfo_weechat_completion_search arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_completion_search, 0, 4, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_LONG, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_completion_get_string arginfo_weechat_register +#define arginfo_weechat_completion_get_string arginfo_weechat_iconv_to_internal -#define arginfo_weechat_completion_list_add arginfo_weechat_register +#define arginfo_weechat_completion_list_add arginfo_weechat_hook_completion_list_add -#define arginfo_weechat_completion_free arginfo_weechat_register +#define arginfo_weechat_completion_free arginfo_weechat_charset_set -#define arginfo_weechat_info_get arginfo_weechat_register +#define arginfo_weechat_info_get arginfo_weechat_iconv_to_internal -#define arginfo_weechat_info_get_hashtable arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_info_get_hashtable, 0, 2, IS_VOID, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_ARRAY, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_infolist_new arginfo_weechat_register +#define arginfo_weechat_infolist_new arginfo_weechat_list_new -#define arginfo_weechat_infolist_new_item arginfo_weechat_register +#define arginfo_weechat_infolist_new_item arginfo_weechat_plugin_get_name -#define arginfo_weechat_infolist_new_var_integer arginfo_weechat_register +#define arginfo_weechat_infolist_new_var_integer arginfo_weechat_ngettext -#define arginfo_weechat_infolist_new_var_string arginfo_weechat_register +#define arginfo_weechat_infolist_new_var_string arginfo_weechat_config_search_option -#define arginfo_weechat_infolist_new_var_pointer arginfo_weechat_register +#define arginfo_weechat_infolist_new_var_pointer arginfo_weechat_config_search_option -#define arginfo_weechat_infolist_new_var_time arginfo_weechat_register +#define arginfo_weechat_infolist_new_var_time arginfo_weechat_ngettext -#define arginfo_weechat_infolist_search_var arginfo_weechat_register +#define arginfo_weechat_infolist_search_var arginfo_weechat_iconv_to_internal -#define arginfo_weechat_infolist_get arginfo_weechat_register +#define arginfo_weechat_infolist_get arginfo_weechat_config_search_option -#define arginfo_weechat_infolist_next arginfo_weechat_register +#define arginfo_weechat_infolist_next arginfo_weechat_charset_set -#define arginfo_weechat_infolist_prev arginfo_weechat_register +#define arginfo_weechat_infolist_prev arginfo_weechat_charset_set -#define arginfo_weechat_infolist_reset_item_cursor arginfo_weechat_register +#define arginfo_weechat_infolist_reset_item_cursor arginfo_weechat_charset_set -#define arginfo_weechat_infolist_fields arginfo_weechat_register +#define arginfo_weechat_infolist_fields arginfo_weechat_plugin_get_name -#define arginfo_weechat_infolist_integer arginfo_weechat_register +#define arginfo_weechat_infolist_integer arginfo_weechat_string_has_highlight -#define arginfo_weechat_infolist_string arginfo_weechat_register +#define arginfo_weechat_infolist_string arginfo_weechat_iconv_to_internal -#define arginfo_weechat_infolist_pointer arginfo_weechat_register +#define arginfo_weechat_infolist_pointer arginfo_weechat_iconv_to_internal -#define arginfo_weechat_infolist_time arginfo_weechat_register +#define arginfo_weechat_infolist_time arginfo_weechat_string_has_highlight -#define arginfo_weechat_infolist_free arginfo_weechat_register +#define arginfo_weechat_infolist_free arginfo_weechat_charset_set -#define arginfo_weechat_hdata_get arginfo_weechat_register +#define arginfo_weechat_hdata_get arginfo_weechat_plugin_get_name -#define arginfo_weechat_hdata_get_var_offset arginfo_weechat_register +#define arginfo_weechat_hdata_get_var_offset arginfo_weechat_string_has_highlight -#define arginfo_weechat_hdata_get_var_type_string arginfo_weechat_register +#define arginfo_weechat_hdata_get_var_type_string arginfo_weechat_iconv_to_internal -#define arginfo_weechat_hdata_get_var_array_size arginfo_weechat_register +#define arginfo_weechat_hdata_get_var_array_size arginfo_weechat_config_write_line -#define arginfo_weechat_hdata_get_var_array_size_string arginfo_weechat_register +#define arginfo_weechat_hdata_get_var_array_size_string arginfo_weechat_config_search_option -#define arginfo_weechat_hdata_get_var_hdata arginfo_weechat_register +#define arginfo_weechat_hdata_get_var_hdata arginfo_weechat_iconv_to_internal -#define arginfo_weechat_hdata_get_list arginfo_weechat_register +#define arginfo_weechat_hdata_get_list arginfo_weechat_iconv_to_internal -#define arginfo_weechat_hdata_check_pointer arginfo_weechat_register +#define arginfo_weechat_hdata_check_pointer arginfo_weechat_config_write_line -#define arginfo_weechat_hdata_move arginfo_weechat_register +#define arginfo_weechat_hdata_move arginfo_weechat_ngettext -#define arginfo_weechat_hdata_search arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_hdata_search, 0, 7, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_ARRAY, 0) + ZEND_ARG_TYPE_INFO(0, p4, IS_ARRAY, 0) + ZEND_ARG_TYPE_INFO(0, p5, IS_ARRAY, 0) + ZEND_ARG_TYPE_INFO(0, p6, IS_LONG, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_hdata_char arginfo_weechat_register +#define arginfo_weechat_hdata_char arginfo_weechat_config_write_line -#define arginfo_weechat_hdata_integer arginfo_weechat_register +#define arginfo_weechat_hdata_integer arginfo_weechat_config_write_line -#define arginfo_weechat_hdata_long arginfo_weechat_register +#define arginfo_weechat_hdata_long arginfo_weechat_config_write_line -#define arginfo_weechat_hdata_string arginfo_weechat_register +#define arginfo_weechat_hdata_string arginfo_weechat_config_search_option -#define arginfo_weechat_hdata_pointer arginfo_weechat_register +#define arginfo_weechat_hdata_pointer arginfo_weechat_config_search_option -#define arginfo_weechat_hdata_time arginfo_weechat_register +#define arginfo_weechat_hdata_time arginfo_weechat_config_write_line -#define arginfo_weechat_hdata_hashtable arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_hdata_hashtable, 0, 3, IS_VOID, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_hdata_compare arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_weechat_hdata_compare, 0, 5, IS_LONG, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p1, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p2, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p3, IS_STRING, 0) + ZEND_ARG_TYPE_INFO(0, p4, IS_LONG, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_hdata_update arginfo_weechat_register +#define arginfo_weechat_hdata_update arginfo_weechat_command_options -#define arginfo_weechat_hdata_get_string arginfo_weechat_register +#define arginfo_weechat_hdata_get_string arginfo_weechat_iconv_to_internal -#define arginfo_weechat_upgrade_new arginfo_weechat_register +#define arginfo_weechat_upgrade_new arginfo_weechat_config_new -#define arginfo_weechat_upgrade_write_object arginfo_weechat_register +#define arginfo_weechat_upgrade_write_object arginfo_weechat_print_y -#define arginfo_weechat_upgrade_read arginfo_weechat_register +#define arginfo_weechat_upgrade_read arginfo_weechat_charset_set -#define arginfo_weechat_upgrade_close arginfo_weechat_register +#define arginfo_weechat_upgrade_close arginfo_weechat_charset_set -#define arginfo_forget_class arginfo_weechat_register +ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_forget_class, 0, 1, _IS_BOOL, 0) + ZEND_ARG_TYPE_INFO(0, p0, IS_STRING, 0) +ZEND_END_ARG_INFO() -#define arginfo_forget_function arginfo_weechat_register +#define arginfo_forget_function arginfo_forget_class diff --git a/src/plugins/php/weechat-php_legacy_arginfo.h b/src/plugins/php/weechat-php_legacy_arginfo.h index 846fbeee5..312281096 100644 --- a/src/plugins/php/weechat-php_legacy_arginfo.h +++ b/src/plugins/php/weechat-php_legacy_arginfo.h @@ -1,415 +1,450 @@ /* This is a generated file, edit the .stub.php file instead. - * Stub hash: c320ac3c03cc39d1ded220999e373af26be4b56c */ - -ZEND_BEGIN_ARG_INFO_EX(arginfo_weechat_register, 0, 0, 0) + * Stub hash: a89a2f8dfa145afbf1c86bf246715c88babebb07 */ + +ZEND_BEGIN_ARG_INFO_EX(arginfo_weechat_register, 0, 0, 7) + ZEND_ARG_INFO(0, p0) + ZEND_ARG_INFO(0, p1) + ZEND_ARG_INFO(0, p2) + ZEND_ARG_INFO(0, p3) + ZEND_ARG_INFO(0, p4) + ZEND_ARG_INFO(0, p5) + ZEND_ARG_INFO(0, p6) ZEND_END_ARG_INFO() -#define arginfo_weechat_plugin_get_name arginfo_weechat_register +ZEND_BEGIN_ARG_INFO_EX(arginfo_weechat_plugin_get_name, 0, 0, 1) + ZEND_ARG_INFO(0, p0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_charset_set arginfo_weechat_register +#define arginfo_weechat_charset_set arginfo_weechat_plugin_get_name -#define arginfo_weechat_iconv_to_internal arginfo_weechat_register +ZEND_BEGIN_ARG_INFO_EX(arginfo_weechat_iconv_to_internal, 0, 0, 2) + ZEND_ARG_INFO(0, p0) + ZEND_ARG_INFO(0, p1) +ZEND_END_ARG_INFO() -#define arginfo_weechat_iconv_from_internal arginfo_weechat_register +#define arginfo_weechat_iconv_from_internal arginfo_weechat_iconv_to_internal -#define arginfo_weechat_gettext arginfo_weechat_register +#define arginfo_weechat_gettext arginfo_weechat_plugin_get_name -#define arginfo_weechat_ngettext arginfo_weechat_register +ZEND_BEGIN_ARG_INFO_EX(arginfo_weechat_ngettext, 0, 0, 3) + ZEND_ARG_INFO(0, p0) + ZEND_ARG_INFO(0, p1) + ZEND_ARG_INFO(0, p2) +ZEND_END_ARG_INFO() -#define arginfo_weechat_strlen_screen arginfo_weechat_register +#define arginfo_weechat_strlen_screen arginfo_weechat_plugin_get_name -#define arginfo_weechat_string_match arginfo_weechat_register +#define arginfo_weechat_string_match arginfo_weechat_ngettext -#define arginfo_weechat_string_match_list arginfo_weechat_register +#define arginfo_weechat_string_match_list arginfo_weechat_ngettext -#define arginfo_weechat_string_has_highlight arginfo_weechat_register +#define arginfo_weechat_string_has_highlight arginfo_weechat_iconv_to_internal -#define arginfo_weechat_string_has_highlight_regex arginfo_weechat_register +#define arginfo_weechat_string_has_highlight_regex arginfo_weechat_iconv_to_internal -#define arginfo_weechat_string_mask_to_regex arginfo_weechat_register +#define arginfo_weechat_string_mask_to_regex arginfo_weechat_plugin_get_name -#define arginfo_weechat_string_format_size arginfo_weechat_register +#define arginfo_weechat_string_format_size arginfo_weechat_plugin_get_name -#define arginfo_weechat_string_color_code_size arginfo_weechat_register +#define arginfo_weechat_string_color_code_size arginfo_weechat_plugin_get_name -#define arginfo_weechat_string_remove_color arginfo_weechat_register +#define arginfo_weechat_string_remove_color arginfo_weechat_iconv_to_internal -#define arginfo_weechat_string_is_command_char arginfo_weechat_register +#define arginfo_weechat_string_is_command_char arginfo_weechat_plugin_get_name -#define arginfo_weechat_string_input_for_buffer arginfo_weechat_register +#define arginfo_weechat_string_input_for_buffer arginfo_weechat_plugin_get_name -#define arginfo_weechat_string_eval_expression arginfo_weechat_register +ZEND_BEGIN_ARG_INFO_EX(arginfo_weechat_string_eval_expression, 0, 0, 4) + ZEND_ARG_INFO(0, p0) + ZEND_ARG_INFO(0, p1) + ZEND_ARG_INFO(0, p2) + ZEND_ARG_INFO(0, p3) +ZEND_END_ARG_INFO() -#define arginfo_weechat_string_eval_path_home arginfo_weechat_register +#define arginfo_weechat_string_eval_path_home arginfo_weechat_string_eval_expression -#define arginfo_weechat_mkdir_home arginfo_weechat_register +#define arginfo_weechat_mkdir_home arginfo_weechat_iconv_to_internal -#define arginfo_weechat_mkdir arginfo_weechat_register +#define arginfo_weechat_mkdir arginfo_weechat_iconv_to_internal -#define arginfo_weechat_mkdir_parents arginfo_weechat_register +#define arginfo_weechat_mkdir_parents arginfo_weechat_iconv_to_internal -#define arginfo_weechat_list_new arginfo_weechat_register +ZEND_BEGIN_ARG_INFO_EX(arginfo_weechat_list_new, 0, 0, 0) +ZEND_END_ARG_INFO() -#define arginfo_weechat_list_add arginfo_weechat_register +#define arginfo_weechat_list_add arginfo_weechat_string_eval_expression -#define arginfo_weechat_list_search arginfo_weechat_register +#define arginfo_weechat_list_search arginfo_weechat_iconv_to_internal -#define arginfo_weechat_list_search_pos arginfo_weechat_register +#define arginfo_weechat_list_search_pos arginfo_weechat_iconv_to_internal -#define arginfo_weechat_list_casesearch arginfo_weechat_register +#define arginfo_weechat_list_casesearch arginfo_weechat_iconv_to_internal -#define arginfo_weechat_list_casesearch_pos arginfo_weechat_register +#define arginfo_weechat_list_casesearch_pos arginfo_weechat_iconv_to_internal -#define arginfo_weechat_list_get arginfo_weechat_register +#define arginfo_weechat_list_get arginfo_weechat_iconv_to_internal -#define arginfo_weechat_list_set arginfo_weechat_register +#define arginfo_weechat_list_set arginfo_weechat_iconv_to_internal -#define arginfo_weechat_list_next arginfo_weechat_register +#define arginfo_weechat_list_next arginfo_weechat_plugin_get_name -#define arginfo_weechat_list_prev arginfo_weechat_register +#define arginfo_weechat_list_prev arginfo_weechat_plugin_get_name -#define arginfo_weechat_list_string arginfo_weechat_register +#define arginfo_weechat_list_string arginfo_weechat_plugin_get_name -#define arginfo_weechat_list_size arginfo_weechat_register +#define arginfo_weechat_list_size arginfo_weechat_plugin_get_name -#define arginfo_weechat_list_remove arginfo_weechat_register +#define arginfo_weechat_list_remove arginfo_weechat_iconv_to_internal -#define arginfo_weechat_list_remove_all arginfo_weechat_register +#define arginfo_weechat_list_remove_all arginfo_weechat_plugin_get_name -#define arginfo_weechat_list_free arginfo_weechat_register +#define arginfo_weechat_list_free arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_new arginfo_weechat_register +#define arginfo_weechat_config_new arginfo_weechat_ngettext -#define arginfo_weechat_config_new_section arginfo_weechat_register +#define arginfo_weechat_config_new_section arginfo_weechat_list_new -#define arginfo_weechat_config_search_section arginfo_weechat_register +#define arginfo_weechat_config_search_section arginfo_weechat_iconv_to_internal -#define arginfo_weechat_config_new_option arginfo_weechat_register +#define arginfo_weechat_config_new_option arginfo_weechat_list_new -#define arginfo_weechat_config_search_option arginfo_weechat_register +#define arginfo_weechat_config_search_option arginfo_weechat_ngettext -#define arginfo_weechat_config_string_to_boolean arginfo_weechat_register +#define arginfo_weechat_config_string_to_boolean arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_option_reset arginfo_weechat_register +#define arginfo_weechat_config_option_reset arginfo_weechat_iconv_to_internal -#define arginfo_weechat_config_option_set arginfo_weechat_register +#define arginfo_weechat_config_option_set arginfo_weechat_ngettext -#define arginfo_weechat_config_option_set_null arginfo_weechat_register +#define arginfo_weechat_config_option_set_null arginfo_weechat_iconv_to_internal -#define arginfo_weechat_config_option_unset arginfo_weechat_register +#define arginfo_weechat_config_option_unset arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_option_rename arginfo_weechat_register +#define arginfo_weechat_config_option_rename arginfo_weechat_iconv_to_internal -#define arginfo_weechat_config_option_is_null arginfo_weechat_register +#define arginfo_weechat_config_option_is_null arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_option_default_is_null arginfo_weechat_register +#define arginfo_weechat_config_option_default_is_null arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_boolean arginfo_weechat_register +#define arginfo_weechat_config_boolean arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_boolean_default arginfo_weechat_register +#define arginfo_weechat_config_boolean_default arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_integer arginfo_weechat_register +#define arginfo_weechat_config_integer arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_integer_default arginfo_weechat_register +#define arginfo_weechat_config_integer_default arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_string arginfo_weechat_register +#define arginfo_weechat_config_string arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_string_default arginfo_weechat_register +#define arginfo_weechat_config_string_default arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_color arginfo_weechat_register +#define arginfo_weechat_config_color arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_color_default arginfo_weechat_register +#define arginfo_weechat_config_color_default arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_write_option arginfo_weechat_register +#define arginfo_weechat_config_write_option arginfo_weechat_iconv_to_internal -#define arginfo_weechat_config_write_line arginfo_weechat_register +#define arginfo_weechat_config_write_line arginfo_weechat_ngettext -#define arginfo_weechat_config_write arginfo_weechat_register +#define arginfo_weechat_config_write arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_read arginfo_weechat_register +#define arginfo_weechat_config_read arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_reload arginfo_weechat_register +#define arginfo_weechat_config_reload arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_option_free arginfo_weechat_register +#define arginfo_weechat_config_option_free arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_section_free_options arginfo_weechat_register +#define arginfo_weechat_config_section_free_options arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_section_free arginfo_weechat_register +#define arginfo_weechat_config_section_free arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_free arginfo_weechat_register +#define arginfo_weechat_config_free arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_get arginfo_weechat_register +#define arginfo_weechat_config_get arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_get_plugin arginfo_weechat_register +#define arginfo_weechat_config_get_plugin arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_is_set_plugin arginfo_weechat_register +#define arginfo_weechat_config_is_set_plugin arginfo_weechat_plugin_get_name -#define arginfo_weechat_config_set_plugin arginfo_weechat_register +#define arginfo_weechat_config_set_plugin arginfo_weechat_iconv_to_internal -#define arginfo_weechat_config_set_desc_plugin arginfo_weechat_register +#define arginfo_weechat_config_set_desc_plugin arginfo_weechat_iconv_to_internal -#define arginfo_weechat_config_unset_plugin arginfo_weechat_register +#define arginfo_weechat_config_unset_plugin arginfo_weechat_plugin_get_name -#define arginfo_weechat_key_bind arginfo_weechat_register +#define arginfo_weechat_key_bind arginfo_weechat_iconv_to_internal -#define arginfo_weechat_key_unbind arginfo_weechat_register +#define arginfo_weechat_key_unbind arginfo_weechat_iconv_to_internal -#define arginfo_weechat_prefix arginfo_weechat_register +#define arginfo_weechat_prefix arginfo_weechat_plugin_get_name -#define arginfo_weechat_color arginfo_weechat_register +#define arginfo_weechat_color arginfo_weechat_plugin_get_name -#define arginfo_weechat_print arginfo_weechat_register +#define arginfo_weechat_print arginfo_weechat_iconv_to_internal -#define arginfo_weechat_print_date_tags arginfo_weechat_register +#define arginfo_weechat_print_date_tags arginfo_weechat_string_eval_expression -#define arginfo_weechat_print_y arginfo_weechat_register +#define arginfo_weechat_print_y arginfo_weechat_ngettext -#define arginfo_weechat_print_y_date_tags arginfo_weechat_register +ZEND_BEGIN_ARG_INFO_EX(arginfo_weechat_print_y_date_tags, 0, 0, 5) + ZEND_ARG_INFO(0, p0) + ZEND_ARG_INFO(0, p1) + ZEND_ARG_INFO(0, p2) + ZEND_ARG_INFO(0, p3) + ZEND_ARG_INFO(0, p4) +ZEND_END_ARG_INFO() -#define arginfo_weechat_log_print arginfo_weechat_register +#define arginfo_weechat_log_print arginfo_weechat_plugin_get_name #define arginfo_weechat_hook_command arginfo_weechat_register -#define arginfo_weechat_hook_completion arginfo_weechat_register +#define arginfo_weechat_hook_completion arginfo_weechat_string_eval_expression -#define arginfo_weechat_hook_completion_get_string arginfo_weechat_register +#define arginfo_weechat_hook_completion_get_string arginfo_weechat_iconv_to_internal -#define arginfo_weechat_hook_completion_list_add arginfo_weechat_register +#define arginfo_weechat_hook_completion_list_add arginfo_weechat_string_eval_expression -#define arginfo_weechat_hook_command_run arginfo_weechat_register +#define arginfo_weechat_hook_command_run arginfo_weechat_ngettext -#define arginfo_weechat_hook_timer arginfo_weechat_register +#define arginfo_weechat_hook_timer arginfo_weechat_print_y_date_tags -#define arginfo_weechat_hook_fd arginfo_weechat_register +ZEND_BEGIN_ARG_INFO_EX(arginfo_weechat_hook_fd, 0, 0, 6) + ZEND_ARG_INFO(0, p0) + ZEND_ARG_INFO(0, p1) + ZEND_ARG_INFO(0, p2) + ZEND_ARG_INFO(0, p3) + ZEND_ARG_INFO(0, p4) + ZEND_ARG_INFO(0, p5) +ZEND_END_ARG_INFO() -#define arginfo_weechat_hook_process arginfo_weechat_register +#define arginfo_weechat_hook_process arginfo_weechat_string_eval_expression -#define arginfo_weechat_hook_process_hashtable arginfo_weechat_register +#define arginfo_weechat_hook_process_hashtable arginfo_weechat_print_y_date_tags -#define arginfo_weechat_hook_connect arginfo_weechat_register +#define arginfo_weechat_hook_connect arginfo_weechat_list_new -#define arginfo_weechat_hook_line arginfo_weechat_register +#define arginfo_weechat_hook_line arginfo_weechat_print_y_date_tags -#define arginfo_weechat_hook_print arginfo_weechat_register +#define arginfo_weechat_hook_print arginfo_weechat_hook_fd -#define arginfo_weechat_hook_signal arginfo_weechat_register +#define arginfo_weechat_hook_signal arginfo_weechat_ngettext -#define arginfo_weechat_hook_signal_send arginfo_weechat_register +#define arginfo_weechat_hook_signal_send arginfo_weechat_ngettext -#define arginfo_weechat_hook_hsignal arginfo_weechat_register +#define arginfo_weechat_hook_hsignal arginfo_weechat_ngettext -#define arginfo_weechat_hook_hsignal_send arginfo_weechat_register +#define arginfo_weechat_hook_hsignal_send arginfo_weechat_iconv_to_internal -#define arginfo_weechat_hook_config arginfo_weechat_register +#define arginfo_weechat_hook_config arginfo_weechat_ngettext -#define arginfo_weechat_hook_modifier arginfo_weechat_register +#define arginfo_weechat_hook_modifier arginfo_weechat_ngettext -#define arginfo_weechat_hook_modifier_exec arginfo_weechat_register +#define arginfo_weechat_hook_modifier_exec arginfo_weechat_ngettext -#define arginfo_weechat_hook_info arginfo_weechat_register +#define arginfo_weechat_hook_info arginfo_weechat_print_y_date_tags #define arginfo_weechat_hook_info_hashtable arginfo_weechat_register -#define arginfo_weechat_hook_infolist arginfo_weechat_register +#define arginfo_weechat_hook_infolist arginfo_weechat_hook_fd -#define arginfo_weechat_hook_focus arginfo_weechat_register +#define arginfo_weechat_hook_focus arginfo_weechat_ngettext -#define arginfo_weechat_hook_set arginfo_weechat_register +#define arginfo_weechat_hook_set arginfo_weechat_ngettext -#define arginfo_weechat_unhook arginfo_weechat_register +#define arginfo_weechat_unhook arginfo_weechat_plugin_get_name -#define arginfo_weechat_unhook_all arginfo_weechat_register +#define arginfo_weechat_unhook_all arginfo_weechat_plugin_get_name -#define arginfo_weechat_buffer_new arginfo_weechat_register +#define arginfo_weechat_buffer_new arginfo_weechat_print_y_date_tags -#define arginfo_weechat_buffer_new_props arginfo_weechat_register +#define arginfo_weechat_buffer_new_props arginfo_weechat_hook_fd -#define arginfo_weechat_buffer_search arginfo_weechat_register +#define arginfo_weechat_buffer_search arginfo_weechat_iconv_to_internal -#define arginfo_weechat_buffer_search_main arginfo_weechat_register +#define arginfo_weechat_buffer_search_main arginfo_weechat_list_new -#define arginfo_weechat_current_buffer arginfo_weechat_register +#define arginfo_weechat_current_buffer arginfo_weechat_list_new -#define arginfo_weechat_buffer_clear arginfo_weechat_register +#define arginfo_weechat_buffer_clear arginfo_weechat_plugin_get_name -#define arginfo_weechat_buffer_close arginfo_weechat_register +#define arginfo_weechat_buffer_close arginfo_weechat_plugin_get_name -#define arginfo_weechat_buffer_merge arginfo_weechat_register +#define arginfo_weechat_buffer_merge arginfo_weechat_iconv_to_internal -#define arginfo_weechat_buffer_unmerge arginfo_weechat_register +#define arginfo_weechat_buffer_unmerge arginfo_weechat_iconv_to_internal -#define arginfo_weechat_buffer_get_integer arginfo_weechat_register +#define arginfo_weechat_buffer_get_integer arginfo_weechat_iconv_to_internal -#define arginfo_weechat_buffer_get_string arginfo_weechat_register +#define arginfo_weechat_buffer_get_string arginfo_weechat_iconv_to_internal -#define arginfo_weechat_buffer_get_pointer arginfo_weechat_register +#define arginfo_weechat_buffer_get_pointer arginfo_weechat_iconv_to_internal -#define arginfo_weechat_buffer_set arginfo_weechat_register +#define arginfo_weechat_buffer_set arginfo_weechat_ngettext -#define arginfo_weechat_buffer_string_replace_local_var arginfo_weechat_register +#define arginfo_weechat_buffer_string_replace_local_var arginfo_weechat_iconv_to_internal -#define arginfo_weechat_buffer_match_list arginfo_weechat_register +#define arginfo_weechat_buffer_match_list arginfo_weechat_iconv_to_internal -#define arginfo_weechat_current_window arginfo_weechat_register +#define arginfo_weechat_current_window arginfo_weechat_list_new -#define arginfo_weechat_window_search_with_buffer arginfo_weechat_register +#define arginfo_weechat_window_search_with_buffer arginfo_weechat_plugin_get_name -#define arginfo_weechat_window_get_integer arginfo_weechat_register +#define arginfo_weechat_window_get_integer arginfo_weechat_iconv_to_internal -#define arginfo_weechat_window_get_string arginfo_weechat_register +#define arginfo_weechat_window_get_string arginfo_weechat_iconv_to_internal -#define arginfo_weechat_window_get_pointer arginfo_weechat_register +#define arginfo_weechat_window_get_pointer arginfo_weechat_iconv_to_internal -#define arginfo_weechat_window_set_title arginfo_weechat_register +#define arginfo_weechat_window_set_title arginfo_weechat_plugin_get_name -#define arginfo_weechat_nicklist_add_group arginfo_weechat_register +#define arginfo_weechat_nicklist_add_group arginfo_weechat_print_y_date_tags -#define arginfo_weechat_nicklist_search_group arginfo_weechat_register +#define arginfo_weechat_nicklist_search_group arginfo_weechat_ngettext #define arginfo_weechat_nicklist_add_nick arginfo_weechat_register -#define arginfo_weechat_nicklist_search_nick arginfo_weechat_register +#define arginfo_weechat_nicklist_search_nick arginfo_weechat_ngettext -#define arginfo_weechat_nicklist_remove_group arginfo_weechat_register +#define arginfo_weechat_nicklist_remove_group arginfo_weechat_iconv_to_internal -#define arginfo_weechat_nicklist_remove_nick arginfo_weechat_register +#define arginfo_weechat_nicklist_remove_nick arginfo_weechat_iconv_to_internal -#define arginfo_weechat_nicklist_remove_all arginfo_weechat_register +#define arginfo_weechat_nicklist_remove_all arginfo_weechat_plugin_get_name -#define arginfo_weechat_nicklist_group_get_integer arginfo_weechat_register +#define arginfo_weechat_nicklist_group_get_integer arginfo_weechat_ngettext -#define arginfo_weechat_nicklist_group_get_string arginfo_weechat_register +#define arginfo_weechat_nicklist_group_get_string arginfo_weechat_ngettext -#define arginfo_weechat_nicklist_group_get_pointer arginfo_weechat_register +#define arginfo_weechat_nicklist_group_get_pointer arginfo_weechat_ngettext -#define arginfo_weechat_nicklist_group_set arginfo_weechat_register +#define arginfo_weechat_nicklist_group_set arginfo_weechat_string_eval_expression -#define arginfo_weechat_nicklist_nick_get_integer arginfo_weechat_register +#define arginfo_weechat_nicklist_nick_get_integer arginfo_weechat_ngettext -#define arginfo_weechat_nicklist_nick_get_string arginfo_weechat_register +#define arginfo_weechat_nicklist_nick_get_string arginfo_weechat_ngettext -#define arginfo_weechat_nicklist_nick_get_pointer arginfo_weechat_register +#define arginfo_weechat_nicklist_nick_get_pointer arginfo_weechat_ngettext -#define arginfo_weechat_nicklist_nick_set arginfo_weechat_register +#define arginfo_weechat_nicklist_nick_set arginfo_weechat_string_eval_expression -#define arginfo_weechat_bar_item_search arginfo_weechat_register +#define arginfo_weechat_bar_item_search arginfo_weechat_plugin_get_name -#define arginfo_weechat_bar_item_new arginfo_weechat_register +#define arginfo_weechat_bar_item_new arginfo_weechat_ngettext -#define arginfo_weechat_bar_item_update arginfo_weechat_register +#define arginfo_weechat_bar_item_update arginfo_weechat_plugin_get_name -#define arginfo_weechat_bar_item_remove arginfo_weechat_register +#define arginfo_weechat_bar_item_remove arginfo_weechat_plugin_get_name -#define arginfo_weechat_bar_search arginfo_weechat_register +#define arginfo_weechat_bar_search arginfo_weechat_plugin_get_name -#define arginfo_weechat_bar_new arginfo_weechat_register +#define arginfo_weechat_bar_new arginfo_weechat_list_new -#define arginfo_weechat_bar_set arginfo_weechat_register +#define arginfo_weechat_bar_set arginfo_weechat_ngettext -#define arginfo_weechat_bar_update arginfo_weechat_register +#define arginfo_weechat_bar_update arginfo_weechat_plugin_get_name -#define arginfo_weechat_bar_remove arginfo_weechat_register +#define arginfo_weechat_bar_remove arginfo_weechat_plugin_get_name -#define arginfo_weechat_command arginfo_weechat_register +#define arginfo_weechat_command arginfo_weechat_iconv_to_internal -#define arginfo_weechat_command_options arginfo_weechat_register +#define arginfo_weechat_command_options arginfo_weechat_ngettext -#define arginfo_weechat_completion_new arginfo_weechat_register +#define arginfo_weechat_completion_new arginfo_weechat_plugin_get_name -#define arginfo_weechat_completion_search arginfo_weechat_register +#define arginfo_weechat_completion_search arginfo_weechat_string_eval_expression -#define arginfo_weechat_completion_get_string arginfo_weechat_register +#define arginfo_weechat_completion_get_string arginfo_weechat_iconv_to_internal -#define arginfo_weechat_completion_list_add arginfo_weechat_register +#define arginfo_weechat_completion_list_add arginfo_weechat_string_eval_expression -#define arginfo_weechat_completion_free arginfo_weechat_register +#define arginfo_weechat_completion_free arginfo_weechat_plugin_get_name -#define arginfo_weechat_info_get arginfo_weechat_register +#define arginfo_weechat_info_get arginfo_weechat_iconv_to_internal -#define arginfo_weechat_info_get_hashtable arginfo_weechat_register +#define arginfo_weechat_info_get_hashtable arginfo_weechat_iconv_to_internal -#define arginfo_weechat_infolist_new arginfo_weechat_register +#define arginfo_weechat_infolist_new arginfo_weechat_list_new -#define arginfo_weechat_infolist_new_item arginfo_weechat_register +#define arginfo_weechat_infolist_new_item arginfo_weechat_plugin_get_name -#define arginfo_weechat_infolist_new_var_integer arginfo_weechat_register +#define arginfo_weechat_infolist_new_var_integer arginfo_weechat_ngettext -#define arginfo_weechat_infolist_new_var_string arginfo_weechat_register +#define arginfo_weechat_infolist_new_var_string arginfo_weechat_ngettext -#define arginfo_weechat_infolist_new_var_pointer arginfo_weechat_register +#define arginfo_weechat_infolist_new_var_pointer arginfo_weechat_ngettext -#define arginfo_weechat_infolist_new_var_time arginfo_weechat_register +#define arginfo_weechat_infolist_new_var_time arginfo_weechat_ngettext -#define arginfo_weechat_infolist_search_var arginfo_weechat_register +#define arginfo_weechat_infolist_search_var arginfo_weechat_iconv_to_internal -#define arginfo_weechat_infolist_get arginfo_weechat_register +#define arginfo_weechat_infolist_get arginfo_weechat_ngettext -#define arginfo_weechat_infolist_next arginfo_weechat_register +#define arginfo_weechat_infolist_next arginfo_weechat_plugin_get_name -#define arginfo_weechat_infolist_prev arginfo_weechat_register +#define arginfo_weechat_infolist_prev arginfo_weechat_plugin_get_name -#define arginfo_weechat_infolist_reset_item_cursor arginfo_weechat_register +#define arginfo_weechat_infolist_reset_item_cursor arginfo_weechat_plugin_get_name -#define arginfo_weechat_infolist_fields arginfo_weechat_register +#define arginfo_weechat_infolist_fields arginfo_weechat_plugin_get_name -#define arginfo_weechat_infolist_integer arginfo_weechat_register +#define arginfo_weechat_infolist_integer arginfo_weechat_iconv_to_internal -#define arginfo_weechat_infolist_string arginfo_weechat_register +#define arginfo_weechat_infolist_string arginfo_weechat_iconv_to_internal -#define arginfo_weechat_infolist_pointer arginfo_weechat_register +#define arginfo_weechat_infolist_pointer arginfo_weechat_iconv_to_internal -#define arginfo_weechat_infolist_time arginfo_weechat_register +#define arginfo_weechat_infolist_time arginfo_weechat_iconv_to_internal -#define arginfo_weechat_infolist_free arginfo_weechat_register +#define arginfo_weechat_infolist_free arginfo_weechat_plugin_get_name -#define arginfo_weechat_hdata_get arginfo_weechat_register +#define arginfo_weechat_hdata_get arginfo_weechat_plugin_get_name -#define arginfo_weechat_hdata_get_var_offset arginfo_weechat_register +#define arginfo_weechat_hdata_get_var_offset arginfo_weechat_iconv_to_internal -#define arginfo_weechat_hdata_get_var_type_string arginfo_weechat_register +#define arginfo_weechat_hdata_get_var_type_string arginfo_weechat_iconv_to_internal -#define arginfo_weechat_hdata_get_var_array_size arginfo_weechat_register +#define arginfo_weechat_hdata_get_var_array_size arginfo_weechat_ngettext -#define arginfo_weechat_hdata_get_var_array_size_string arginfo_weechat_register +#define arginfo_weechat_hdata_get_var_array_size_string arginfo_weechat_ngettext -#define arginfo_weechat_hdata_get_var_hdata arginfo_weechat_register +#define arginfo_weechat_hdata_get_var_hdata arginfo_weechat_iconv_to_internal -#define arginfo_weechat_hdata_get_list arginfo_weechat_register +#define arginfo_weechat_hdata_get_list arginfo_weechat_iconv_to_internal -#define arginfo_weechat_hdata_check_pointer arginfo_weechat_register +#define arginfo_weechat_hdata_check_pointer arginfo_weechat_ngettext -#define arginfo_weechat_hdata_move arginfo_weechat_register +#define arginfo_weechat_hdata_move arginfo_weechat_ngettext #define arginfo_weechat_hdata_search arginfo_weechat_register -#define arginfo_weechat_hdata_char arginfo_weechat_register +#define arginfo_weechat_hdata_char arginfo_weechat_ngettext -#define arginfo_weechat_hdata_integer arginfo_weechat_register +#define arginfo_weechat_hdata_integer arginfo_weechat_ngettext -#define arginfo_weechat_hdata_long arginfo_weechat_register +#define arginfo_weechat_hdata_long arginfo_weechat_ngettext -#define arginfo_weechat_hdata_string arginfo_weechat_register +#define arginfo_weechat_hdata_string arginfo_weechat_ngettext -#define arginfo_weechat_hdata_pointer arginfo_weechat_register +#define arginfo_weechat_hdata_pointer arginfo_weechat_ngettext -#define arginfo_weechat_hdata_time arginfo_weechat_register +#define arginfo_weechat_hdata_time arginfo_weechat_ngettext -#define arginfo_weechat_hdata_hashtable arginfo_weechat_register +#define arginfo_weechat_hdata_hashtable arginfo_weechat_ngettext -#define arginfo_weechat_hdata_compare arginfo_weechat_register +#define arginfo_weechat_hdata_compare arginfo_weechat_print_y_date_tags -#define arginfo_weechat_hdata_update arginfo_weechat_register +#define arginfo_weechat_hdata_update arginfo_weechat_ngettext -#define arginfo_weechat_hdata_get_string arginfo_weechat_register +#define arginfo_weechat_hdata_get_string arginfo_weechat_iconv_to_internal -#define arginfo_weechat_upgrade_new arginfo_weechat_register +#define arginfo_weechat_upgrade_new arginfo_weechat_ngettext -#define arginfo_weechat_upgrade_write_object arginfo_weechat_register +#define arginfo_weechat_upgrade_write_object arginfo_weechat_ngettext -#define arginfo_weechat_upgrade_read arginfo_weechat_register +#define arginfo_weechat_upgrade_read arginfo_weechat_plugin_get_name -#define arginfo_weechat_upgrade_close arginfo_weechat_register +#define arginfo_weechat_upgrade_close arginfo_weechat_plugin_get_name -#define arginfo_forget_class arginfo_weechat_register +#define arginfo_forget_class arginfo_weechat_plugin_get_name -#define arginfo_forget_function arginfo_weechat_register +#define arginfo_forget_function arginfo_weechat_plugin_get_name |