mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix Win32 Build. mkdir/rmdir are macros
This commit is contained in:
parent
ec5b38fae9
commit
a67bf6ecc9
2 changed files with 6 additions and 6 deletions
|
@ -153,8 +153,8 @@ typedef struct _php_stream_wrapper_ops {
|
|||
int (*rename)(php_stream_wrapper *wrapper, char *url_from, char *url_to, int options, php_stream_context *context TSRMLS_DC);
|
||||
|
||||
/* Create/Remove directory */
|
||||
int (*mkdir)(php_stream_wrapper *wrapper, char *url, int mode, int options, php_stream_context *context TSRMLS_DC);
|
||||
int (*rmdir)(php_stream_wrapper *wrapper, char *url, int options, php_stream_context *context TSRMLS_DC);
|
||||
int (*stream_mkdir)(php_stream_wrapper *wrapper, char *url, int mode, int options, php_stream_context *context TSRMLS_DC);
|
||||
int (*stream_rmdir)(php_stream_wrapper *wrapper, char *url, int options, php_stream_context *context TSRMLS_DC);
|
||||
} php_stream_wrapper_ops;
|
||||
|
||||
struct _php_stream_wrapper {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue