X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-json_post;a=blobdiff_plain;f=php_json_post.h;h=d94a14c587622927843bdbaad2950bb8055457de;hp=76cb8fe95506fe9489cb95592ab88bed398274ee;hb=c1b0270e93fc2706027296233553933d03d3fd1e;hpb=98b35c8f1a7c1c1bc818ee163048a76c81dd7141 diff --git a/php_json_post.h b/php_json_post.h index 76cb8fe..d94a14c 100644 --- a/php_json_post.h +++ b/php_json_post.h @@ -30,10 +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; - int error_response; - zend_bool error_exit; + zend_long flags; + struct { + zend_long response; + zend_bool warning; + zend_bool exit; + } onerror; +#if PHP_VERSION_ID < 70000 + zend_module_entry *json_module; +#endif ZEND_END_MODULE_GLOBALS(json_post) ZEND_EXTERN_MODULE_GLOBALS(json_post);