diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-04-04 20:41:42 +0200 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-04-04 20:41:48 +0200 |
commit | 7c3078737fcdd7c4da0607b2856502089e60194b (patch) | |
tree | c4e37fd2cd962616072b7324d78c7c6a5c6255d2 /ext/curl/php_curl.h | |
parent | a43bc33fb2575cda582167c0d6571e501a2e6496 (diff) | |
download | php-git-7c3078737fcdd7c4da0607b2856502089e60194b.tar.gz |
Generate function entries from stubs for a couple of extensions
Closes GH-5347
Diffstat (limited to 'ext/curl/php_curl.h')
-rw-r--r-- | ext/curl/php_curl.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/ext/curl/php_curl.h b/ext/curl/php_curl.h index ec74e96956..e7e9361e0e 100644 --- a/ext/curl/php_curl.h +++ b/ext/curl/php_curl.h @@ -72,52 +72,6 @@ PHP_MINIT_FUNCTION(curl); PHP_MSHUTDOWN_FUNCTION(curl); PHP_MINFO_FUNCTION(curl); -PHP_FUNCTION(curl_close); -PHP_FUNCTION(curl_copy_handle); -PHP_FUNCTION(curl_errno); -PHP_FUNCTION(curl_error); -PHP_FUNCTION(curl_exec); -PHP_FUNCTION(curl_getinfo); -PHP_FUNCTION(curl_init); -PHP_FUNCTION(curl_setopt); -PHP_FUNCTION(curl_setopt_array); -PHP_FUNCTION(curl_version); - -PHP_FUNCTION(curl_multi_add_handle); -PHP_FUNCTION(curl_multi_close); -PHP_FUNCTION(curl_multi_exec); -PHP_FUNCTION(curl_multi_getcontent); -PHP_FUNCTION(curl_multi_info_read); -PHP_FUNCTION(curl_multi_init); -PHP_FUNCTION(curl_multi_remove_handle); -PHP_FUNCTION(curl_multi_select); -PHP_FUNCTION(curl_multi_errno); - -PHP_FUNCTION(curl_share_close); -PHP_FUNCTION(curl_share_init); -PHP_FUNCTION(curl_share_setopt); -PHP_FUNCTION(curl_share_errno); - -PHP_FUNCTION(curl_strerror); -PHP_FUNCTION(curl_multi_strerror); -PHP_FUNCTION(curl_share_strerror); - -PHP_FUNCTION(curl_reset); - -#if LIBCURL_VERSION_NUM >= 0x070f04 /* 7.15.4 */ -PHP_FUNCTION(curl_escape); -PHP_FUNCTION(curl_unescape); - -PHP_FUNCTION(curl_multi_setopt); -#endif - -#if LIBCURL_VERSION_NUM >= 0x071200 /* 7.18.0 */ -PHP_FUNCTION(curl_pause); -#endif - -PHP_FUNCTION(curl_file_create); - - void _php_curl_multi_close(zend_resource *); void _php_curl_share_close(zend_resource *); |