diff options
Diffstat (limited to 'ext/curl/php_curl.h')
-rw-r--r-- | ext/curl/php_curl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/curl/php_curl.h b/ext/curl/php_curl.h index 10248f9cb3..9277622425 100644 --- a/ext/curl/php_curl.h +++ b/ext/curl/php_curl.h @@ -32,6 +32,7 @@ extern zend_module_entry curl_module_entry; #define curl_module_ptr &curl_module_entry PHP_MINIT_FUNCTION(curl); +PHP_MSHUTDOWN_FUNCTION(curl); PHP_MINFO_FUNCTION(curl); PHP_FUNCTION(curl_version); PHP_FUNCTION(curl_init); @@ -87,6 +88,7 @@ PHP_FUNCTION(curl_close); #define C_LAST 45 typedef struct { + int use_file = 0; int le_curl; } php_curl_globals; |