comparison src/os/win32/ngx_win32_config.h @ 503:b1648294f693 release-0.1.26

nginx-0.1.26-RELEASE import *) Change: the invalid client header lines are now ignored and logged at the info level. *) Change: the server name is also logged in error log. *) Feature: the ngx_http_auth_basic_module module and the auth_basic and auth_basic_user_file directives.
author Igor Sysoev <igor@sysoev.ru>
date Tue, 22 Mar 2005 16:02:46 +0000
parents d4ea69372b94
children 9b8c906f6e63
comparison
equal deleted inserted replaced
502:2017b79d7db5 503:b1648294f693
91 91
92 #include <ngx_auto_config.h> 92 #include <ngx_auto_config.h>
93 93
94 94
95 #define ngx_inline __inline 95 #define ngx_inline __inline
96 #define ngx_cdecl __cdecl
96 97
97 98
98 #ifdef _MSC_VER 99 #ifdef _MSC_VER
99 typedef unsigned __int32 uint32_t; 100 typedef unsigned __int32 uint32_t;
100 typedef __int32 int32_t; 101 typedef __int32 int32_t;
102 #define ngx_libc_cdecl __cdecl
101 103
102 #else /* __WATCOMC__ and __BORLANDC__ */ 104 #elif defined __WATCOMC__
103 typedef unsigned int uint32_t; 105 typedef unsigned int uint32_t;
104 typedef int int32_t; 106 typedef int int32_t;
107 #define ngx_libc_cdecl
108
109 #else /* __BORLANDC__ */
110 typedef unsigned int uint32_t;
111 typedef int int32_t;
112 #define ngx_libc_cdecl __cdecl
105 #endif 113 #endif
106 114
107 typedef __int64 int64_t; 115 typedef __int64 int64_t;
108 typedef unsigned __int64 uint64_t; 116 typedef unsigned __int64 uint64_t;
109 typedef u_int uintptr_t; 117 typedef u_int uintptr_t;