Reverse previous changes
[mono.git] / mono / io-layer / event-private.h
1 /*
2  * event-private.h:  Private definitions for event handles
3  *
4  * Author:
5  *      Dick Porter (dick@ximian.com)
6  *
7  * (C) 2002 Ximian, Inc.
8  */
9
10 #ifndef _WAPI_EVENT_PRIVATE_H_
11 #define _WAPI_EVENT_PRIVATE_H_
12
13 #include <config.h>
14 #include <glib.h>
15 #include <pthread.h>
16
17 #include <mono/io-layer/mono-mutex.h>
18
19 extern struct _WapiHandleOps _wapi_event_ops;
20 extern struct _WapiHandleOps _wapi_namedevent_ops;
21
22 extern void _wapi_event_details (gpointer handle_info);
23
24 struct _WapiHandle_event
25 {
26         gboolean manual;
27         guint32 set_count;
28 };
29
30 struct _WapiHandle_namedevent
31 {
32         WapiSharedNamespace sharedns;
33         gboolean manual;
34         guint32 set_count;
35 };
36
37 #endif /* _WAPI_EVENT_PRIVATE_H_ */