X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-json_post;a=blobdiff_plain;f=php_json_post.h;h=9623a449a83498bed2b14d5082ab903a683b8fc4;hp=e797385b6cca2b5dd6d1d10e247a21c1ef175742;hb=bda8b43e0418324d9caf532c146bca5a5be89fc1;hpb=864973a4330f38d53d1dc85291efb81d23cc10b8 diff --git a/php_json_post.h b/php_json_post.h index e797385..9623a44 100644 --- a/php_json_post.h +++ b/php_json_post.h @@ -16,7 +16,7 @@ extern zend_module_entry json_post_module_entry; #define phpext_json_post_ptr &json_post_module_entry -#define PHP_JSON_POST_VERSION "1.0.0" +#define PHP_JSON_POST_VERSION "1.1.0" #ifdef PHP_WIN32 # define PHP_JSON_POST_API __declspec(dllexport) @@ -30,8 +30,20 @@ extern zend_module_entry json_post_module_entry; # include "TSRM.h" #endif +#if PHP_VERSION_ID < 70000 +typedef long zend_long; +#endif + ZEND_BEGIN_MODULE_GLOBALS(json_post) - long flags; + zend_long flags; + struct { + zend_long response; + zend_bool warning; + zend_bool exit; + } onerror; +#if PHP_VERSION_ID < 70000 + zend_function *json_last_error; +#endif ZEND_END_MODULE_GLOBALS(json_post) ZEND_EXTERN_MODULE_GLOBALS(json_post);