diff options
author | Kristian Köhntopp <kk@php.net> | 2000-07-25 22:15:26 +0000 |
---|---|---|
committer | Kristian Köhntopp <kk@php.net> | 2000-07-25 22:15:26 +0000 |
commit | 19687ea1ed0fd31168c7097ea9b1a69b095ccc27 (patch) | |
tree | c76b11018cbff5076124e5ad3c57e3adf87d4519 /ext/curl/php_curl.h | |
parent | b3305dab642684fee25ae04860e2650e13ecb1c1 (diff) | |
download | php-git-19687ea1ed0fd31168c7097ea9b1a69b095ccc27.tar.gz |
Trivial change to add access to CURL version information for
user programs in order to have them react appropriately.
Diffstat (limited to 'ext/curl/php_curl.h')
-rw-r--r-- | ext/curl/php_curl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/curl/php_curl.h b/ext/curl/php_curl.h index b5c6e51dd4..0f82b27bc5 100644 --- a/ext/curl/php_curl.h +++ b/ext/curl/php_curl.h @@ -33,6 +33,7 @@ extern zend_module_entry curl_module_entry; PHP_MINIT_FUNCTION (curl); PHP_MINFO_FUNCTION (curl); +PHP_FUNCTION (curl_version); PHP_FUNCTION (curl_init); PHP_FUNCTION (curl_setopt); PHP_FUNCTION (curl_exec); @@ -56,4 +57,4 @@ typedef struct { #define curl_module_ptr NULL #endif /* HAVE_CURL */ #define phpext_curl_ptr curl_module_ptr -#endif /* _PHP_CURL_H */
\ No newline at end of file +#endif /* _PHP_CURL_H */ |