Escape the .file path name generated in the asembly code. clang does not mind, but...
[mono.git] / mono / io-layer / event-private.h
index e7f17216aafacfd041fb44600be1aadfdd302b7d..5b3ec44b193410d51fe8ebd500e2035ba0c1b56a 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * event-private.h:  Private definitions for event handles
+ *
+ * Author:
+ *     Dick Porter (dick@ximian.com)
+ *
+ * (C) 2002 Ximian, Inc.
+ */
+
 #ifndef _WAPI_EVENT_PRIVATE_H_
 #define _WAPI_EVENT_PRIVATE_H_
 
 #include <glib.h>
 #include <pthread.h>
 
-#include <mono/io-layer/mono-mutex.h>
+#include <mono/utils/mono-mutex.h>
+
+extern struct _WapiHandleOps _wapi_event_ops;
+extern struct _WapiHandleOps _wapi_namedevent_ops;
+
+extern void _wapi_event_details (gpointer handle_info);
 
 struct _WapiHandle_event
 {
        gboolean manual;
+       guint32 set_count;
 };
 
-struct _WapiHandlePrivate_event
+struct _WapiHandle_namedevent
 {
-       int dummy;
+       WapiSharedNamespace sharedns;
+       gboolean manual;
+       guint32 set_count;
 };
 
 #endif /* _WAPI_EVENT_PRIVATE_H_ */