summaryrefslogtreecommitdiff
path: root/ext/standard/php_fopen_wrappers.h
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2003-02-27 18:16:35 +0000
committerWez Furlong <wez@php.net>2003-02-27 18:16:35 +0000
commit76ebaa6ee7a57eeaf26de40f60692c3f42077469 (patch)
treeb1419d234cd18ee24670c8bffad1867a47657cb7 /ext/standard/php_fopen_wrappers.h
parent203068d055b3746074c9e7e85650a312d3c8b24d (diff)
downloadphp-git-76ebaa6ee7a57eeaf26de40f60692c3f42077469.tar.gz
- Move https:// and ftps:// wrapper registration into the openssl module.
- Expose the http:// and ftp:// wrappers as PHPAPI - Remove unused variables
Diffstat (limited to 'ext/standard/php_fopen_wrappers.h')
-rw-r--r--ext/standard/php_fopen_wrappers.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/php_fopen_wrappers.h b/ext/standard/php_fopen_wrappers.h
index fe92880ed6..5446ac9971 100644
--- a/ext/standard/php_fopen_wrappers.h
+++ b/ext/standard/php_fopen_wrappers.h
@@ -25,8 +25,8 @@
php_stream *php_stream_url_wrap_http(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
php_stream *php_stream_url_wrap_ftp(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC);
-extern php_stream_wrapper php_stream_http_wrapper;
-extern php_stream_wrapper php_stream_ftp_wrapper;
+PHPAPI php_stream_wrapper php_stream_http_wrapper;
+PHPAPI php_stream_wrapper php_stream_ftp_wrapper;
extern php_stream_wrapper php_stream_php_wrapper;
#endif