diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2000-10-13 00:09:31 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2000-10-13 00:09:31 +0000 |
commit | cae27179ce1f84d47de87c4efbbcbd814f3c7bc6 (patch) | |
tree | ec1b0d87eb57dacc359cef6fe1fc616d9af88e80 /main/fopen_wrappers.h | |
parent | e07e515a1b28dd04911ac9d2f1a099efc2d69160 (diff) | |
download | php-git-cae27179ce1f84d47de87c4efbbcbd814f3c7bc6.tar.gz |
fopen wrappers cleanup
- comfiguration is now done by an ini parameter
instead of a compile time option
- the implementations of the three standard wrappers
now live in seperate files in ext/standard
- the compiler is happy again, no more warnings
Diffstat (limited to 'main/fopen_wrappers.h')
-rw-r--r-- | main/fopen_wrappers.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/main/fopen_wrappers.h b/main/fopen_wrappers.h index 7d119bd35a..2e131aaf1b 100644 --- a/main/fopen_wrappers.h +++ b/main/fopen_wrappers.h @@ -76,11 +76,10 @@ PHPAPI FILE *php_fopen_with_path(char *filename, char *mode, char *path, char ** PHPAPI int php_is_url(char *path); PHPAPI char *php_strip_url_passwd(char *path); -PHPAPI char *expand_filepath(const char *filepath,char *real_path); int php_init_fopen_wrappers(void); int php_shutdown_fopen_wrappers(void); -PHPAPI int php_register_url_wrapper(char *protocol, FILE * (*wrapper)(const char *path, char *mode, int options, int *issock, int *socketd, char **opened_path)); +PHPAPI int php_register_url_wrapper(char *protocol, FILE * (*wrapper)(char *path, char *mode, int options, int *issock, int *socketd, char **opened_path)); PHPAPI int php_unregister_url_wrapper(char *protocol); #endif |