summaryrefslogtreecommitdiff
path: root/main/user_streams.c
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 /main/user_streams.c
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 'main/user_streams.c')
-rw-r--r--main/user_streams.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/user_streams.c b/main/user_streams.c
index 4aed5d99ac..7f9a2c2701 100644
--- a/main/user_streams.c
+++ b/main/user_streams.c
@@ -29,7 +29,7 @@ struct php_user_stream_wrapper {
php_stream_wrapper wrapper;
};
-static php_stream *user_wrapper_opener(php_stream_wrapper *wrapper, char *filename, char *mode, int options, char **opened_path STREAMS_DC TSRMLS_DC);
+static php_stream *user_wrapper_opener(php_stream_wrapper *wrapper, char *filename, char *mode, int options, char **opened_path, php_stream_wrapper_options *exoptions STREAMS_DC TSRMLS_DC);
static php_stream_wrapper_ops user_stream_wops = {
user_wrapper_opener,
@@ -115,7 +115,7 @@ function stream_open($path, $mode, $options, &$opened_path)
* */
-static php_stream *user_wrapper_opener(php_stream_wrapper *wrapper, char *filename, char *mode, int options, char **opened_path STREAMS_DC TSRMLS_DC)
+static php_stream *user_wrapper_opener(php_stream_wrapper *wrapper, char *filename, char *mode, int options, char **opened_path, php_stream_wrapper_options *exoptions STREAMS_DC TSRMLS_DC)
{
struct php_user_stream_wrapper *uwrap = (struct php_user_stream_wrapper*)wrapper->abstract;
php_userstream_data_t *us;