Commit 2095ba19 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

kernel32: Add stub implementations of Wow64DisableWow64FsRedirection and…

kernel32: Add stub implementations of Wow64DisableWow64FsRedirection and Wow64RevertWow64FsRedirection.
parent f8313855
......@@ -1141,6 +1141,8 @@
@ stdcall WaitNamedPipeW (wstr long)
@ stdcall WideCharToMultiByte(long long wstr long ptr long ptr ptr)
@ stdcall WinExec(str long)
@ stdcall Wow64DisableWow64FsRedirection(ptr)
@ stdcall Wow64RevertWow64FsRedirection(ptr)
@ stdcall WriteConsoleA(long ptr long ptr ptr)
@ stdcall WriteConsoleInputA(long ptr long ptr)
@ stub WriteConsoleInputVDMA
......
......@@ -1539,6 +1539,26 @@ UINT WINAPI GetSystemWow64DirectoryA( LPSTR lpBuffer, UINT uSize )
return 0;
}
/***********************************************************************
* Wow64DisableWow64FsRedirection (KERNEL32.@)
*/
BOOL WINAPI Wow64DisableWow64FsRedirection( PVOID *old_value )
{
FIXME("%p\n", old_value);
if (old_value) *old_value = (void *)0xdeadbeef;
return TRUE;
}
/***********************************************************************
* Wow64RevertWow64FsRedirection (KERNEL32.@)
*/
BOOL WINAPI Wow64RevertWow64FsRedirection( PVOID old_value )
{
FIXME("%p\n", old_value);
return TRUE;
}
/***********************************************************************
* NeedCurrentDirectoryForExePathW (KERNEL32.@)
......
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