X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fws2_32%2Fmisc%2Fevent.c;h=3a54902f9c8b7f23efc917b26b74c473f3c2ca1b;hp=d83c5a07eae17fafcfab9c0fe5ea0f8282661b7a;hb=HEAD;hpb=7c0db166f81fbe8c8b913d7f26048e337d383605 diff --git a/lib/ws2_32/misc/event.c b/lib/ws2_32/misc/event.c index d83c5a0..3a54902 100644 --- a/lib/ws2_32/misc/event.c +++ b/lib/ws2_32/misc/event.c @@ -11,6 +11,9 @@ #include +/* + * @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(