diff options
author | Wez Furlong <wez@php.net> | 2002-03-24 18:05:49 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2002-03-24 18:05:49 +0000 |
commit | 5ee65bd8f5e6b3b205bc3eb08e019f2a15c07a35 (patch) | |
tree | bd26669c2ff51733c3885aba15e1536dd1bc6d52 /ext/standard/php_fopen_wrappers.h | |
parent | 68b18b05fe9c715b342867201f9130f0bb5cde9d (diff) | |
download | php-git-5ee65bd8f5e6b3b205bc3eb08e019f2a15c07a35.tar.gz |
Phase 1 of wrapper OO cleanup.
# Collecting underpants
Diffstat (limited to 'ext/standard/php_fopen_wrappers.h')
-rw-r--r-- | ext/standard/php_fopen_wrappers.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/php_fopen_wrappers.h b/ext/standard/php_fopen_wrappers.h index 5178d74ce1..7c82937d05 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(char *path, char *mode, int options, char **opened_path, void *wrappercontext STREAMS_DC TSRMLS_DC); -php_stream *php_stream_url_wrap_ftp(char *path, char *mode, int options, char **opened_path, void *wrappercontext STREAMS_DC TSRMLS_DC); +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_wrapper php_stream_http_wrapper; php_stream_wrapper php_stream_ftp_wrapper; php_stream_wrapper php_stream_php_wrapper; |