diff options
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 2 |
1 files changed, 2 insertions, 0 deletions
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 |