diff options
author | Sterling Hughes <sterling@php.net> | 2000-08-17 02:14:41 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2000-08-17 02:14:41 +0000 |
commit | 8a8b5dacc6f09ba573842d1a7730b1fdf41190c3 (patch) | |
tree | a4721bc3e2048055310c649a972932b006aeea18 /ext/curl/php_curl.h | |
parent | 80612a97ebb68fad9c975fd1e6e216cca6de1c3a (diff) | |
download | php-git-8a8b5dacc6f09ba573842d1a7730b1fdf41190c3.tar.gz |
ts issues.
Diffstat (limited to 'ext/curl/php_curl.h')
-rw-r--r-- | ext/curl/php_curl.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ext/curl/php_curl.h b/ext/curl/php_curl.h index 4d42cd3888..5ad041507b 100644 --- a/ext/curl/php_curl.h +++ b/ext/curl/php_curl.h @@ -33,7 +33,6 @@ extern zend_module_entry curl_module_entry; PHP_MINIT_FUNCTION(curl); PHP_MSHUTDOWN_FUNCTION(curl); -PHP_RINIT_FUNCTION(curl); PHP_MINFO_FUNCTION(curl); PHP_FUNCTION(curl_version); PHP_FUNCTION(curl_init); @@ -88,9 +87,16 @@ PHP_FUNCTION(curl_close); #define CE_BAD_CALLING_ORDER 44 #define C_LAST 45 +struct curl_fileid_table +{ + int id; + struct curl_fileid_table *next; +}; + typedef struct { int use_file; int le_curl; + struct curl_fileid_table *output_node, output_start; } php_curl_globals; #ifdef ZTS |