diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-09-03 12:33:54 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-09-03 15:34:26 +0200 |
commit | 6a45c5e2432991b320bbae2d96d707690f5bc63c (patch) | |
tree | 416d25c5b4f9b55daa0171233020379915792b7a | |
parent | d032ee2159cdc9909af566602a174de6766cf002 (diff) | |
download | weechat-6a45c5e2432991b320bbae2d96d707690f5bc63c.zip |
php: add "PLUGIN" in headers
-rw-r--r-- | src/plugins/php/weechat-php-api.h | 6 | ||||
-rw-r--r-- | src/plugins/php/weechat-php.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/php/weechat-php-api.h b/src/plugins/php/weechat-php-api.h index bf53ed39a..eadab84b9 100644 --- a/src/plugins/php/weechat-php-api.h +++ b/src/plugins/php/weechat-php-api.h @@ -17,8 +17,8 @@ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef WEECHAT_PHP_API_H -#define WEECHAT_PHP_API_H 1 +#ifndef WEECHAT_PLUGIN_PHP_API_H +#define WEECHAT_PLUGIN_PHP_API_H 1 extern struct zval* weechat_php_api_funcs[]; extern struct t_php_const weechat_php_api_consts[]; @@ -221,4 +221,4 @@ PHP_FUNCTION(weechat_window_set_title); PHP_FUNCTION(forget_class); PHP_FUNCTION(forget_function); -#endif /* WEECHAT_PHP_API_H */ +#endif /* WEECHAT_PLUGIN_PHP_API_H */ diff --git a/src/plugins/php/weechat-php.h b/src/plugins/php/weechat-php.h index c1a2778db..615aedd78 100644 --- a/src/plugins/php/weechat-php.h +++ b/src/plugins/php/weechat-php.h @@ -17,8 +17,8 @@ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef WEECHAT_PHP_H -#define WEECHAT_PHP_H 1 +#ifndef WEECHAT_PLUGIN_PHP_H +#define WEECHAT_PLUGIN_PHP_H 1 #define weechat_plugin weechat_php_plugin #define PHP_PLUGIN_NAME "php" @@ -57,4 +57,4 @@ extern void *weechat_php_exec (struct t_plugin_script *script, extern zval *weechat_php_func_map_get (const char *func_name); extern char *weechat_php_func_map_add (zval *ofunc); -#endif /* WEECHAT_PHP_H */ +#endif /* WEECHAT_PLUGIN_PHP_H */ |