2004-04-13 Zoltan Varga <vargaz@freemail.hu>
[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 <w32api.h>
20 #include <windows.h>
21 #include <ws2tcpip.h>
22 #include <psapi.h>
23 #else   /* EVERYONE ELSE */
24 #include "mono/io-layer/wapi.h"
25 #include "mono/io-layer/uglify.h"
26 #endif /* PLATFORM_WIN32 */
27
28 #endif /* _MONO_IOLAYER_IOLAYER_H_ */