[runtime] Fix "make distcheck"
[mono-project.git] / mono / io-layer / events.h
blob577f57b6483540ab763b67fe4ccd4026a8914b7d
1 /*
2 * events.h: Event handles
4 * Author:
5 * Dick Porter (dick@ximian.com)
7 * (C) 2002 Ximian, Inc.
8 */
10 #ifndef _WAPI_EVENTS_H_
11 #define _WAPI_EVENTS_H_
13 #include <glib.h>
15 G_BEGIN_DECLS
17 extern gpointer CreateEvent (WapiSecurityAttributes *security, gboolean manual,
18 gboolean initial, const gunichar2 *name);
19 extern gboolean PulseEvent (gpointer handle);
20 extern gboolean ResetEvent (gpointer handle);
21 extern gboolean SetEvent (gpointer handle);
22 extern gpointer OpenEvent (guint32 access, gboolean inherit,
23 const gunichar2 *name);
25 G_END_DECLS
27 #endif /* _WAPI_EVENTS_H_ */