From 1665cba750539a4245cf600bacdff3f74fe7bbfd Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Sat, 15 Apr 2000 14:20:01 +0000 Subject: - Change PHP_ to V_ (directory & file functions) --- main/php.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'main/php.h') diff --git a/main/php.h b/main/php.h index ab47f02162..89968361f1 100644 --- a/main/php.h +++ b/main/php.h @@ -289,17 +289,17 @@ PHPAPI int cfg_get_string(char *varname, char **result); /* Virtual current directory support */ #ifdef VIRTUAL_DIR -#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) +#define V_GETCWD(buff, size) virtual_getcwd(buff,size) +#define V_FOPEN(path, mode) virtual_fopen(path, mode) +#define V_CHDIR(path) virtual_chdir(path) +#define V_CHDIR_FILE(path) virtual_chdir_file(path) +#define V_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) +#define V_GETCWD(buff, size) getcwd(buff,size) +#define V_FOPEN(path, mode) fopen(path, mode) +#define V_CHDIR(path) chdir(path) +#define V_CHDIR_FILE(path) chdir_file(path) +#define V_GETWD(buf) getwd(buf) #endif #include "zend_constants.h" -- cgit v1.2.1