diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-31 06:28:05 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-31 06:28:05 +0000 |
commit | bc42c37513a730b0b3ff9cf29e14e45e4ec50c71 (patch) | |
tree | c4857143995f88a04e3f9d56cb5f8d757fa07575 /main/fopen_wrappers.h | |
parent | 0b7fdbb690b0270d13266a83521d1fd03e2c270c (diff) | |
download | php-git-bc42c37513a730b0b3ff9cf29e14e45e4ec50c71.tar.gz |
More TSRMLS_FETCH work. Got it under 400 now.
Diffstat (limited to 'main/fopen_wrappers.h')
-rw-r--r-- | main/fopen_wrappers.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/main/fopen_wrappers.h b/main/fopen_wrappers.h index 18a8610c03..040dae6cb6 100644 --- a/main/fopen_wrappers.h +++ b/main/fopen_wrappers.h @@ -69,7 +69,7 @@ PHPAPI FILE *php_fopen_wrapper(char *filename, char *mode, int options, int *iss PHPAPI int php_fopen_primary_script(zend_file_handle *file_handle); PHPAPI char *expand_filepath(const char *filepath, char *real_path); -PHPAPI int php_check_open_basedir(char *path); +PHPAPI int php_check_open_basedir(char *path TSRMLS_DC); PHPAPI int php_check_specific_open_basedir(char *basedir, char *path TSRMLS_DC); PHPAPI FILE *php_fopen_with_path(char *filename, char *mode, char *path, char **opened_path); @@ -78,10 +78,10 @@ PHPAPI int php_is_url(char *path); PHPAPI char *php_strip_url_passwd(char *path); -int php_init_fopen_wrappers(void); -int php_shutdown_fopen_wrappers(void); -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); +int php_init_fopen_wrappers(TSRMLS_D); +int php_shutdown_fopen_wrappers(TSRMLS_D); +PHPAPI int php_register_url_wrapper(char *protocol, FILE * (*wrapper)(char *path, char *mode, int options, int *issock, int *socketd, char **opened_path) TSRMLS_DC); +PHPAPI int php_unregister_url_wrapper(char *protocol TSRMLS_DC); #endif /* |