diff options
author | Zeev Suraski <zeev@php.net> | 2002-03-18 08:05:28 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2002-03-18 08:05:28 +0000 |
commit | 73e79322ba9eb710a407629d26185f23c36fadd7 (patch) | |
tree | dabbf83d37e64cf0ff588724b9cf50207e8ba44d /main/php_streams.h | |
parent | 3de2e94c84e1fb771bcd1cb1733ea2d3082f108d (diff) | |
download | php-git-73e79322ba9eb710a407629d26185f23c36fadd7.tar.gz |
Fix the build and all of the outstanding VC++ warnings
Diffstat (limited to 'main/php_streams.h')
-rwxr-xr-x | main/php_streams.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/main/php_streams.h b/main/php_streams.h index 7141da21a1..9f2e4602e5 100755 --- a/main/php_streams.h +++ b/main/php_streams.h @@ -227,10 +227,10 @@ PHPAPI int php_stream_cast(php_stream *stream, int castas, void **ret, int show_ # define IGNORE_URL_WIN 0 #endif -int php_init_stream_wrappers(void); -int php_shutdown_stream_wrappers(void); -PHPAPI int php_register_url_stream_wrapper(char *protocol, php_stream_wrapper *wrapper); -PHPAPI int php_unregister_url_stream_wrapper(char *protocol); +int php_init_stream_wrappers(TSRMLS_D); +int php_shutdown_stream_wrappers(TSRMLS_D); +PHPAPI int php_register_url_stream_wrapper(char *protocol, php_stream_wrapper *wrapper TSRMLS_DC); +PHPAPI int php_unregister_url_stream_wrapper(char *protocol TSRMLS_DC); PHPAPI php_stream *_php_stream_open_wrapper(char *path, char *mode, int options, char **opened_path STREAMS_DC); #define php_stream_open_wrapper(path, mode, options, opened) _php_stream_open_wrapper((path), (mode), (options), (opened) STREAMS_CC) |