Merge pull request #3773 from mono/bockbuild-integration
[mono.git] / mono / io-layer / wapi.h
1 /*
2  * wapi.h:  Public include files
3  *
4  * Author:
5  *      Dick Porter (dick@ximian.com)
6  *
7  * (C) 2002 Ximian, Inc.
8  */
9
10 #ifndef _WAPI_WAPI_H_
11 #define _WAPI_WAPI_H_
12
13 #include <mono/io-layer/wapi-remap.h>
14 #include <mono/io-layer/types.h>
15 #include <mono/io-layer/macros.h>
16 #include <mono/io-layer/io.h>
17 #include <mono/io-layer/context.h>
18 #include <mono/io-layer/error.h>
19 #include <mono/io-layer/messages.h>
20 #include <mono/io-layer/security.h>
21 #include <mono/io-layer/sockets.h>
22 #include <mono/io-layer/status.h>
23 #include <mono/io-layer/timefuncs.h>
24 #include <mono/io-layer/versioninfo.h>
25 #include <mono/io-layer/wait.h>
26
27 void
28 wapi_init (void);
29
30 void
31 wapi_cleanup (void);
32
33 gboolean
34 CloseHandle (gpointer handle);
35
36 gboolean
37 DuplicateHandle (gpointer srcprocess, gpointer src, gpointer targetprocess, gpointer *target,
38         guint32 access G_GNUC_UNUSED, gboolean inherit G_GNUC_UNUSED, guint32 options G_GNUC_UNUSED);
39
40 pid_t
41 wapi_getpid (void);
42
43 #endif /* _WAPI_WAPI_H_ */