summaryrefslogtreecommitdiff
path: root/ext/standard/php_fopen_wrappers.h
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2002-04-10 22:42:32 +0000
committerWez Furlong <wez@php.net>2002-04-10 22:42:32 +0000
commite1d0a147901d27bb01b0ccda315a9fdd3474e1ee (patch)
tree693eee9be6ba188c62f1223eb2c96f70f23256dd /ext/standard/php_fopen_wrappers.h
parent3eafd2207ccb313cff264c2e5baaa26b707fbe4f (diff)
downloadphp-git-e1d0a147901d27bb01b0ccda315a9fdd3474e1ee.tar.gz
Implement stream context and status notification system.
Bump the BC for zlib notice to a warning # See my RFC to php-dev a few days ago
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 7c82937d05..392b88d063 100644
--- a/ext/standard/php_fopen_wrappers.h
+++ b/ext/standard/php_fopen_wrappers.h
@@ -23,8 +23,8 @@
#ifndef PHP_FOPEN_WRAPPERS_H
#define PHP_FOPEN_WRAPPERS_H
-php_stream *php_stream_url_wrap_http(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path STREAMS_DC TSRMLS_DC);
-php_stream *php_stream_url_wrap_ftp(php_stream_wrapper *wrapper, char *path, char *mode, int options, char **opened_path STREAMS_DC TSRMLS_DC);
+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);
php_stream_wrapper php_stream_http_wrapper;
php_stream_wrapper php_stream_ftp_wrapper;
php_stream_wrapper php_stream_php_wrapper;