update for HEAD-2003091401
[reactos.git] / lib / ws2_32 / misc / event.c
index d83c5a0..3a54902 100644 (file)
@@ -11,6 +11,9 @@
 #include <handle.h>
 
 
+/*
+ * @implemented
+ */
 BOOL
 EXPORT
 WSACloseEvent(
@@ -32,6 +35,9 @@ WSACloseEvent(
 }
 
 
+/*
+ * @implemented
+ */
 WSAEVENT
 EXPORT
 WSACreateEvent(VOID)
@@ -43,15 +49,18 @@ WSACreateEvent(VOID)
     return FALSE;
   }
 
-  Event = CreateEvent(NULL, TRUE, FALSE, NULL);
+  Event = CreateEventW(NULL, TRUE, FALSE, NULL);
 
   if (Event == INVALID_HANDLE_VALUE)
     WSASetLastError(WSA_INVALID_HANDLE);
-  
+
   return (WSAEVENT)Event;
 }
 
 
+/*
+ * @implemented
+ */
 BOOL
 EXPORT
 WSAResetEvent(
@@ -73,6 +82,9 @@ WSAResetEvent(
 }
 
 
+/*
+ * @implemented
+ */
 BOOL
 EXPORT
 WSASetEvent(
@@ -94,6 +106,9 @@ WSASetEvent(
 }
 
 
+/*
+ * @implemented
+ */
 DWORD
 EXPORT
 WSAWaitForMultipleEvents(
@@ -128,6 +143,9 @@ WSAWaitForMultipleEvents(
 }
 
 
+/*
+ * @implemented
+ */
 INT
 EXPORT
 WSAEnumNetworkEvents(
@@ -166,6 +184,9 @@ WSAEnumNetworkEvents(
 }
 
 
+/*
+ * @implemented
+ */
 INT
 EXPORT
 WSAEventSelect(