diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-06-21 19:22:53 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-06-21 19:22:53 +0000 |
commit | b14169a714bb3deeb7f4912a58238f7a54aeecd1 (patch) | |
tree | 6f1cd4f91e2239d74e8075cbc7fb965d8d93cb49 /src/os/win32/ngx_win32_config.h | |
parent | ef06648615d6ce6e000e6c737f80c2ba9fa04d3a (diff) | |
download | nginx-b14169a714bb3deeb7f4912a58238f7a54aeecd1.tar.gz nginx-b14169a714bb3deeb7f4912a58238f7a54aeecd1.zip |
nginx-0.0.7-2004-06-21-23:22:53 import
Diffstat (limited to 'src/os/win32/ngx_win32_config.h')
-rw-r--r-- | src/os/win32/ngx_win32_config.h | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/os/win32/ngx_win32_config.h b/src/os/win32/ngx_win32_config.h index cc3a06842..72e5c5e79 100644 --- a/src/os/win32/ngx_win32_config.h +++ b/src/os/win32/ngx_win32_config.h @@ -30,16 +30,28 @@ /* disable some "-W4" level warnings */ -#pragma warning(disable:4054) +/* disable warnings about some 'type cast */ #pragma warning(disable:4054) #pragma warning(disable:4055) + /* unreferenced formal parameter */ #pragma warning(disable:4100) + +/* conditional expression is constant */ #pragma warning(disable:4127) + +/* nonstandard extension used : bit field types other than int */ #pragma warning(disable:4214) + +/* unreachable code */ #pragma warning(disable:4702) + +/* assignment within conditional expression */ #pragma warning(disable:4706) +/* disable "function 'ngx_handle_write_event' not inlined" */ +#pragma warning(disable:4710) + #endif @@ -121,6 +133,9 @@ typedef uint32_t ngx_atomic_t; #endif +#define OFF_T_MAX_VALUE 9223372036854775807 + + /* STUB */ #define HAVE_LITTLE_ENDIAN 1 |