Merge pull request #3678 from mono/seq-read
[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 <sys/types.h>
14
15 #include <mono/io-layer/wapi-remap.h>
16 #include <mono/io-layer/types.h>
17 #include <mono/io-layer/macros.h>
18 #include <mono/io-layer/io.h>
19 #include <mono/io-layer/error.h>
20 #include <mono/io-layer/messages.h>
21 #include <mono/io-layer/security.h>
22 #include <mono/io-layer/sockets.h>
23 #include <mono/io-layer/status.h>
24 #include <mono/io-layer/timefuncs.h>
25 #include <mono/io-layer/versioninfo.h>
26 #include <mono/io-layer/wait.h>
27
28 void
29 wapi_init (void);
30
31 void
32 wapi_cleanup (void);
33
34 gboolean
35 CloseHandle (gpointer handle);
36
37 gboolean
38 DuplicateHandle (gpointer srcprocess, gpointer src, gpointer targetprocess, gpointer *target,
39         guint32 access G_GNUC_UNUSED, gboolean inherit G_GNUC_UNUSED, guint32 options G_GNUC_UNUSED);
40
41 pid_t
42 wapi_getpid (void);
43
44 #endif /* _WAPI_WAPI_H_ */