diff options
author | Sara Golemon <pollita@php.net> | 2004-09-14 03:48:17 +0000 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2004-09-14 03:48:17 +0000 |
commit | 34550382d89597552df369fe1d6318d32b5929cb (patch) | |
tree | 1e788daee0de5c28b2e81d6d23e851df346ecc4e /main/php_streams.h | |
parent | 41c4fd66d96856cab3c39542486941e748706830 (diff) | |
download | php-git-34550382d89597552df369fe1d6318d32b5929cb.tar.gz |
Added stream_filter_remove() to cancel a stream filter.
Register filters as resources when
instantiated by stream_filter_(ap|pre)pend().
Export php_stream_filter_flush() internal function to wind buffered data
out of a particular filter until consumed by a later filter or sent to
stream->readbuffer or stream->ops->write()
Diffstat (limited to 'main/php_streams.h')
-rwxr-xr-x | main/php_streams.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/php_streams.h b/main/php_streams.h index 290ec14e32..1c9802f93a 100755 --- a/main/php_streams.h +++ b/main/php_streams.h @@ -30,6 +30,7 @@ BEGIN_EXTERN_C() PHPAPI int php_file_le_stream(void); PHPAPI int php_file_le_pstream(void); +PHPAPI int php_file_le_stream_filter(void); END_EXTERN_C() /* {{{ Streams memory debugging stuff */ |