2002-06-25 Dick Porter <dick@ximian.com>
[mono.git] / mono / io-layer / process-private.h
1 /*
2  * process-private.h: Private definitions for process handles
3  *
4  * Author:
5  *      Dick Porter (dick@ximian.com)
6  *
7  * (C) 2002 Ximian, Inc.
8  */
9
10 #ifndef _WAPI_PROCESS_PRIVATE_H_
11 #define _WAPI_PROCESS_PRIVATE_H_
12
13 #include <config.h>
14 #include <glib.h>
15
16 extern struct _WapiHandleOps _wapi_process_ops;
17
18 struct _WapiHandle_process
19 {
20         pid_t id;
21         guint32 exec_errno;
22         guint32 exitstatus;
23         gpointer main_thread;
24         guint32 env;
25         WapiFileTime create_time;
26         WapiFileTime exit_time;
27 };
28
29 struct _WapiHandlePrivate_process
30 {
31         int dummy;
32 };
33
34 #endif /* _WAPI_PROCESS_PRIVATE_H_ */