diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2003-11-13 16:16:33 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2003-11-13 16:16:33 +0000 |
| commit | 45890ea8c13a561fe3fd66bf639ad429f3c18846 (patch) | |
| tree | 72b5d6ceedcd3152d68d579989a99ddf0de84db5 /src/os/win32/ngx_files.h | |
| parent | 562e53ea7d2ec904abba1cf9a9766fe3a91574e8 (diff) | |
| download | nginx-45890ea8c13a561fe3fd66bf639ad429f3c18846.tar.gz nginx-45890ea8c13a561fe3fd66bf639ad429f3c18846.tar.bz2 | |
nginx-0.0.1-2003-11-13-19:16:33 import
Diffstat (limited to 'src/os/win32/ngx_files.h')
| -rw-r--r-- | src/os/win32/ngx_files.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/os/win32/ngx_files.h b/src/os/win32/ngx_files.h index 8e739e9fb..8e386e8ca 100644 --- a/src/os/win32/ngx_files.h +++ b/src/os/win32/ngx_files.h @@ -6,11 +6,17 @@ #include <ngx_core.h> -/* INVALID_FILE_ATTRIBUTES specified but not defined at least in MSVC6SP2 */ +/* INVALID_FILE_ATTRIBUTES is specified but not defined at least in MSVC6SP2 */ #ifndef INVALID_FILE_ATTRIBUTES -#define INVALID_FILE_ATTRIBUTES 0xFFFFFFFF +#define INVALID_FILE_ATTRIBUTES 0xffffffff #endif +/* INVALID_SET_FILE_POINTER is not defined at least in MSVC6SP2 */ +#ifndef INVALID_SET_FILE_POINTER +#define INVALID_SET_FILE_POINTER 0xffffffff +#endif + + #define NGX_INVALID_FILE INVALID_HANDLE_VALUE #define NGX_FILE_ERROR 0 |
