* AssemblyNameTest.cs: Added tests for Clone and serialization without
[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         guint32 proc_name;
28         size_t min_working_set;
29         size_t max_working_set;
30 };
31
32 struct _WapiHandlePrivate_process
33 {
34         int dummy;
35 };
36
37 #endif /* _WAPI_PROCESS_PRIVATE_H_ */