mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
- virtual_lstat() doesn't exist on Windows.
This commit is contained in:
parent
46a7a05d57
commit
c0919bbd41
1 changed files with 4 additions and 0 deletions
|
@ -295,7 +295,11 @@ PHPAPI int cfg_get_string(char *varname, char **result);
|
|||
#define V_CHDIR_FILE(path) virtual_chdir_file(path)
|
||||
#define V_GETWD(buf)
|
||||
#define V_STAT(path, buff) virtual_stat(path, buff)
|
||||
#ifdef PHP_WIN32
|
||||
#define V_LSTAT(path, buff) virtual_stat(path, buff)
|
||||
#else
|
||||
#define V_LSTAT(path, buff) virtual_lstat(path, buff)
|
||||
#endif
|
||||
#else
|
||||
#define V_GETCWD(buff, size) getcwd(buff,size)
|
||||
#define V_FOPEN(path, mode) fopen(path, mode)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue