comparison src/os/win32/ngx_win32_config.h @ 176:c0552e5ab567

nginx-0.0.1-2003-11-09-23:03:38 import; separate building
author Igor Sysoev <igor@sysoev.ru>
date Sun, 09 Nov 2003 20:03:38 +0000
parents ef8c87afcfc5
children 2d143372a1ee
comparison
equal deleted inserted replaced
175:e92c2c647c57 176:c0552e5ab567
14 14
15 #include <time.h> /* gmtime, strftime */ 15 #include <time.h> /* gmtime, strftime */
16 16
17 17
18 #define ngx_inline __inline 18 #define ngx_inline __inline
19
20
21 #if 0
22 typedef unsigned __int32 uint32_t;
23 #else
24 typedef unsigned int uint32_t;
25 #endif
26 typedef __int64 int64_t;
27 typedef unsigned __int64 uint64_t;
28 typedef u_int uintptr_t;
29
30 typedef int ssize_t;
31 typedef long time_t;
32 typedef unsigned __int64 off_t;
33
34
35 #define OFF_FMT "%I64d"
36 #define SIZE_FMT "%d"
37 #define SIZEX_FMT "%x"
38 #define PID_FMT "%d"
39
40
41 /* STUB */
42 typedef uint32_t u_int32_t;
19 43
20 44
21 #ifndef HAVE_INHERITED_NONBLOCK 45 #ifndef HAVE_INHERITED_NONBLOCK
22 #define HAVE_INHERITED_NONBLOCK 1 46 #define HAVE_INHERITED_NONBLOCK 1
23 #endif 47 #endif