Ai
1 Star 0 Fork 2

LetuCRM/php-zephir-parser

forked from koogua/php-zephir-parser 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
zephir_parser.h 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
Serghei Iakovlev 提交于 2020-04-04 19:56 +08:00 . Bump version
/* zephir_parser.h
*
* This file is part of the Zephir Parser.
*
* (c) Zephir Team <team@zephir-lang.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
#ifndef PHP_ZEPHIR_PARSER_H
#define PHP_ZEPHIR_PARSER_H
extern zend_module_entry zephir_parser_module_entry;
#define phpext_zephir_parser_ptr &zephir_parser_module_entry
#define PHP_ZEPHIR_PARSER_NAME "Zephir Parser"
#define PHP_ZEPHIR_PARSER_VERSION "1.3.4"
#define PHP_ZEPHIR_PARSER_AUTHOR "Zephir Team and contributors"
#define PHP_ZEPHIR_PARSER_DESCRIPTION "The Zephir Parser delivered as a C extension for the PHP language."
#ifdef PHP_WIN32
# define PHP_ZEPHIR_PARSER_API __declspec(dllexport)
#elif defined(__GNUC__) && __GNUC__ >= 4
# define PHP_ZEPHIR_PARSER_API __attribute__ ((visibility("default")))
#else
# define PHP_ZEPHIR_PARSER_API
#endif
#ifdef ZTS
#include <TSRM.h>
#endif
#define ZEPHIR_PARSER_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(zephir_parser, v)
#if defined(ZTS) && defined(COMPILE_DL_ZEPHIR_PARSER)
ZEND_TSRMLS_CACHE_EXTERN();
#endif
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/letucrm/php-zephir-parser.git
git@gitee.com:letucrm/php-zephir-parser.git
letucrm
php-zephir-parser
php-zephir-parser
master

搜索帮助