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

php: add missing functions current_buffer and current_window

This commit is contained in:
Sébastien Helleu
2017-09-06 20:07:26 +02:00
parent 776f8e2725
commit 48c9fbec35
3 changed files with 32 additions and 0 deletions
+2
View File
@@ -179,6 +179,7 @@ const zend_function_entry weechat_functions[] = {
PHP_FE(weechat_buffer_new, NULL)
PHP_FE(weechat_buffer_search, NULL)
PHP_FE(weechat_buffer_search_main, NULL)
PHP_FE(weechat_current_buffer, NULL)
PHP_FE(weechat_buffer_clear, NULL)
PHP_FE(weechat_buffer_close, NULL)
PHP_FE(weechat_buffer_merge, NULL)
@@ -189,6 +190,7 @@ const zend_function_entry weechat_functions[] = {
PHP_FE(weechat_buffer_set, NULL)
PHP_FE(weechat_buffer_string_replace_local_var, NULL)
PHP_FE(weechat_buffer_match_list, NULL)
PHP_FE(weechat_current_window, NULL)
PHP_FE(weechat_window_search_with_buffer, NULL)
PHP_FE(weechat_window_get_integer, NULL)
PHP_FE(weechat_window_get_string, NULL)