fixed tests
[mono.git] / mono / io-layer / io-layer.h
1 /*
2  * io-layer.h: Include the right files depending on platform.  This
3  * file is the only entry point into the io-layer library.
4  *
5  * Author:
6  *      Dick Porter (dick@ximian.com)
7  *
8  * (C) 2002 Ximian, Inc.
9  */
10
11 #ifndef _MONO_IOLAYER_IOLAYER_H_
12 #define _MONO_IOLAYER_IOLAYER_H_
13
14 #if defined(__WIN32__)
15 /* Native win32 */
16 #define UNICODE
17 #define _UNICODE
18 #define __USE_W32_SOCKETS
19 #include <winsock2.h>
20 #include <windows.h>
21 #include <winbase.h>
22 #include <ws2tcpip.h>
23 #include <psapi.h>
24 #include <shlobj.h>
25 #include <mswsock.h>
26 #else   /* EVERYONE ELSE */
27 #include "mono/io-layer/wapi.h"
28 #include "mono/io-layer/uglify.h"
29 #endif /* PLATFORM_WIN32 */
30
31 #endif /* _MONO_IOLAYER_IOLAYER_H_ */