comparison src/os/win32/ngx_win32_config.h @ 279:b79f021a644a

nginx-0.0.2-2004-03-04-19:34:23 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 04 Mar 2004 16:34:23 +0000
parents 0ba4821f4460
children 7c7183b3ea8b
comparison
equal deleted inserted replaced
278:0ba4821f4460 279:b79f021a644a
38 38
39 39
40 #define ngx_inline __inline 40 #define ngx_inline __inline
41 41
42 42
43 #if 1 43 #ifdef _MSC_VER
44 typedef unsigned __int32 uint32_t; 44 typedef unsigned __int32 uint32_t;
45 #else 45 #else /* __WATCOMC__ */
46 /* OWC has not __int32 */
47 typedef unsigned int uint32_t; 46 typedef unsigned int uint32_t;
48 #endif 47 #endif
49 48
50 typedef __int64 int64_t; 49 typedef __int64 int64_t;
51 typedef unsigned __int64 uint64_t; 50 typedef unsigned __int64 uint64_t;