From d8e64d623ec7e72d2d63b8105da188fa91a3f21f Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Sun, 2 Apr 2000 19:45:02 +0000 Subject: - This version of chdir_file should be compatible with the Apache one. --- main/php.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'main/php.h') diff --git a/main/php.h b/main/php.h index 76494cbdd8..5e1d8d84dd 100644 --- a/main/php.h +++ b/main/php.h @@ -291,11 +291,13 @@ PHPAPI int cfg_get_string(char *varname, char **result); #define PHP_GETCWD(buff, size) virtual_getcwd(buff,size) #define PHP_FOPEN(path, mode) virtual_fopen(path, mode) #define PHP_CHDIR(path) virtual_chdir(path) +#define PHP_CHDIR_FILE(path) virtual_chdir_file(path) #define PHP_GETWD(buf) #else #define PHP_GETCWD(buff, size) getcwd(buff,size) #define PHP_FOPEN(path, mode) fopen(path, mode) #define PHP_CHDIR(path) chdir(path) +#define PHP_CHDIR_FILE(path) chdir_file(path) #define PHP_GETWD(buf) getwd(buf) #endif -- cgit v1.2.1