comparison src/os/win32/ngx_win32_config.h @ 441:da8c5707af39

nginx-0.1.0-2004-09-28-12:34:51 import; set copyright and remove unused files
author Igor Sysoev <igor@sysoev.ru>
date Tue, 28 Sep 2004 08:34:51 +0000
parents 47709bff4468
children 42d11f017717
comparison
equal deleted inserted replaced
440:f390d1775430 441:da8c5707af39
1
2 /*
3 * Copyright (C) 2002-2004 Igor Sysoev
4 */
5
6
1 #ifndef _NGX_WIN32_CONFIG_H_INCLUDED_ 7 #ifndef _NGX_WIN32_CONFIG_H_INCLUDED_
2 #define _NGX_WIN32_CONFIG_H_INCLUDED_ 8 #define _NGX_WIN32_CONFIG_H_INCLUDED_
3 9
4 10
5 #define WIN32 1 11 #define WIN32 1
6 12
7 #define STRICT 13 #define STRICT
8 #define WIN32_LEAN_AND_MEAN 14 #define WIN32_LEAN_AND_MEAN
9 15
10 /* 16 /*
11 * we need to include windows.h explicity before winsock2.h because 17 * we need to include <windows.h> explicity before <winsock2.h> because
12 * the warning 4201 is enabled in windows.h 18 * the warning 4201 is enabled in <windows.h>
13 */ 19 */
14 #include <windows.h> 20 #include <windows.h>
15 21
16 #ifdef _MSC_VER 22 #ifdef _MSC_VER
17 #pragma warning(disable:4201) 23 #pragma warning(disable:4201)