Commit 23b74754 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

ntdll: Recursive notify is implemented.

parent 8e772c83
......@@ -1884,9 +1884,8 @@ NtNotifyChangeDirectoryFile( HANDLE FileHandle, HANDLE Event,
if (CompletionFilter == 0 || (CompletionFilter & ~FILE_NOTIFY_ALL))
return STATUS_INVALID_PARAMETER;
if (WatchTree || ApcRoutine)
FIXME("parameters ignored %p %p %d\n",
ApcRoutine, ApcContext, WatchTree );
if (ApcRoutine)
FIXME("parameters ignored %p %p\n", ApcRoutine, ApcContext );
info = RtlAllocateHeap( GetProcessHeap(), 0, sizeof *info );
if (!info)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment