From 139cc95610d7c14a5eab62df971fe5505b0b067c Mon Sep 17 00:00:00 2001 From: Sebastian Lackner Date: Thu, 25 Oct 2018 14:56:31 +0200 Subject: [PATCH] kernel32: Add SetFileCompletionNotificationModes implementation. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=38960 Signed-off-by: Jacek Caban Signed-off-by: Alexandre Julliard --- dlls/kernel32/file.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/dlls/kernel32/file.c b/dlls/kernel32/file.c index 081f0760a58..eeccf67e15e 100644 --- a/dlls/kernel32/file.c +++ b/dlls/kernel32/file.c @@ -1065,13 +1065,20 @@ BOOL WINAPI SetEndOfFile( HANDLE hFile ) return FALSE; } + /************************************************************************** * SetFileCompletionNotificationModes (KERNEL32.@) */ -BOOL WINAPI SetFileCompletionNotificationModes( HANDLE handle, UCHAR flags ) +BOOL WINAPI SetFileCompletionNotificationModes( HANDLE file, UCHAR flags ) { - FIXME("%p %x - stub\n", handle, flags); - SetLastError(ERROR_CALL_NOT_IMPLEMENTED); + FILE_IO_COMPLETION_NOTIFICATION_INFORMATION info; + IO_STATUS_BLOCK io; + NTSTATUS status; + + info.Flags = flags; + status = NtSetInformationFile( file, &io, &info, sizeof(info), FileIoCompletionNotificationInformation ); + if (status == STATUS_SUCCESS) return TRUE; + SetLastError( RtlNtStatusToDosError(status) ); return FALSE; } -- 2.11.4.GIT