Fix Win32 Build. mkdir/rmdir are macros

This commit is contained in:
Sara Golemon 2003-12-13 18:48:39 +00:00
parent ec5b38fae9
commit a67bf6ecc9
2 changed files with 6 additions and 6 deletions

View file

@ -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 {