[PATCH] Implement BindIoCompletionCallback

Rolf Kalbermatter r.kalbermatter at hccnet.nl
Wed Dec 19 05:42:02 CST 2007


Andrey Turkin wrote:

>diff --git a/dlls/kernel32/tests/sync.c b/dlls/kernel32/tests/sync.c
>index e402fed..7bbb3e2 100644
>--- a/dlls/kernel32/tests/sync.c
>+++ b/dlls/kernel32/tests/sync.c
>@@ -327,7 +327,7 @@ static void test_iocp_callback(void)
>     retb = p_BindIoCompletionCallback(hFile, iocp_callback, 0);
>     ok(retb == FALSE, "BindIoCompletionCallback succeeded on a file that
wasn't created with FILE_FLAG_OVERLAPPED\n");
>     if(retb == FALSE && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED) {
>-        todo_wine ok (0, "BindIoCompletionCallback returned
ERROR_CALL_NOT_IMPLEMENTED\n");
>+        ok (0, "BindIoCompletionCallback returned
ERROR_CALL_NOT_IMPLEMENTED\n");
>         return;
>     }

I don't think this check makes much sense after the change anymore. It's at
best a skip() for older Windows versions.

Rolf Kalbermatter




More information about the wine-devel mailing list