Commit 546b4323 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

Stub implementation for ReadDirectoryChangesW.

parent 90c57396
......@@ -130,3 +130,14 @@ FARPROC16 WINAPI FileCDR16(FARPROC16 x)
FIXME("(0x%8x): stub\n", (int) x);
return (FARPROC16)TRUE;
}
BOOL WINAPI ReadDirectoryChangesW( HANDLE handle, LPVOID buffer, DWORD len, BOOL subtree,
DWORD filter, LPDWORD returned, LPOVERLAPPED overlapped,
LPOVERLAPPED_COMPLETION_ROUTINE completion )
{
FIXME( "%p %p 0x%08lx %d 0x%08lx %p %p %p\n", handle, buffer, len, subtree, filter,
returned, overlapped, completion );
SetLastError( ERROR_INVALID_FUNCTION );
return FALSE;
}
......@@ -1027,7 +1027,7 @@
@ stdcall OpenWaitableTimerW(long long wstr)
@ stub ReadConsoleInputExA
@ stub ReadConsoleInputExW
@ stub ReadDirectoryChangesW
@ stdcall ReadDirectoryChangesW(long ptr long long long ptr ptr ptr)
@ stub ReadFileScatter
@ stub SetConsoleIcon
@ stdcall SetConsoleInputExeNameA(ptr)
......
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