2005-02-21 Ben Maurer <bmaurer@ximian.com>
[mono-project.git] / mono / io-layer / event-private.h
blob2f7da3a8d8c3688cf6cd526f384c1c8e1a3ed85f
1 /*
2 * event-private.h: Private definitions for event handles
4 * Author:
5 * Dick Porter (dick@ximian.com)
7 * (C) 2002 Ximian, Inc.
8 */
10 #ifndef _WAPI_EVENT_PRIVATE_H_
11 #define _WAPI_EVENT_PRIVATE_H_
13 #include <config.h>
14 #include <glib.h>
15 #include <pthread.h>
17 #include <mono/io-layer/mono-mutex.h>
19 extern struct _WapiHandleOps _wapi_event_ops;
21 struct _WapiHandle_event
23 gboolean manual;
24 guint32 set_count;
27 struct _WapiHandlePrivate_event
29 int dummy;
32 #endif /* _WAPI_EVENT_PRIVATE_H_ */