Fri May 31 16:21:54 CEST 2002 Paolo Molaro <lupus@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 };
22
23 struct _WapiHandlePrivate_process
24 {
25         int dummy;
26 };
27
28 #endif /* _WAPI_PROCESS_PRIVATE_H_ */