1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-26 21:06:38 +02:00

api: add functions config_option_get_string and config_option_get_pointer in scripting API

This commit is contained in:
Sébastien Helleu
2024-03-03 10:32:11 +01:00
parent 0bf560f9b7
commit c3eff15a56
22 changed files with 349 additions and 3 deletions
+2
View File
@@ -154,6 +154,8 @@ const zend_function_entry weechat_functions[] = {
PHP_FE(weechat_config_option_set_null, arginfo_weechat_config_option_set_null)
PHP_FE(weechat_config_option_unset, arginfo_weechat_config_option_unset)
PHP_FE(weechat_config_option_rename, arginfo_weechat_config_option_rename)
PHP_FE(weechat_config_option_get_string, arginfo_weechat_config_option_get_string)
PHP_FE(weechat_config_option_get_pointer, arginfo_weechat_config_option_get_pointer)
PHP_FE(weechat_config_option_is_null, arginfo_weechat_config_option_is_null)
PHP_FE(weechat_config_option_default_is_null, arginfo_weechat_config_option_default_is_null)
PHP_FE(weechat_config_boolean, arginfo_weechat_config_boolean)