2000-10-13 08:09:31 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-09 01:33:29 +08:00
|
|
|
| PHP Version 5 |
|
2000-10-13 08:09:31 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2004-01-09 01:33:29 +08:00
|
|
|
| Copyright (c) 1997-2004 The PHP Group |
|
2000-10-13 08:09:31 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2003-06-11 04:04:29 +08:00
|
|
|
| This source file is subject to version 3.0 of the PHP license, |
|
2000-10-13 08:09:31 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
|
|
|
| http://www.php.net/license/3_0.txt. |
|
2000-10-13 08:09:31 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
2002-02-28 16:29:35 +08:00
|
|
|
| Authors: Rasmus Lerdorf <rasmus@php.net> |
|
2000-10-13 08:09:31 +08:00
|
|
|
| Jim Winstead <jimw@php.net> |
|
|
|
|
| Hartmut Holzgraefe <hholzgra@php.net> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifndef PHP_FOPEN_WRAPPERS_H
|
|
|
|
#define PHP_FOPEN_WRAPPERS_H
|
|
|
|
|
2002-04-11 06:42:32 +08:00
|
|
|
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);
|
2003-03-24 05:58:03 +08:00
|
|
|
extern PHPAPI php_stream_wrapper php_stream_http_wrapper;
|
|
|
|
extern PHPAPI php_stream_wrapper php_stream_ftp_wrapper;
|
2002-05-05 01:26:45 +08:00
|
|
|
extern php_stream_wrapper php_stream_php_wrapper;
|
2003-10-20 04:04:33 +08:00
|
|
|
extern php_stream_wrapper php_plain_files_wrapper;
|
2000-10-13 08:09:31 +08:00
|
|
|
|
|
|
|
#endif
|