mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
added stubs for Wow64DisableWow64FsRedirection, Wow64RevertWow64FsRedirection
svn path=/trunk/; revision=19404
This commit is contained in:
parent
c7aae26f12
commit
d5691f048e
2 changed files with 18 additions and 0 deletions
|
@ -941,6 +941,8 @@ WaitNamedPipeA@8
|
|||
WaitNamedPipeW@8
|
||||
WideCharToMultiByte@32
|
||||
WinExec@8
|
||||
Wow64DisableWow64FsRedirection@4
|
||||
Wow64RevertWow64FsRedirection@4
|
||||
WriteConsoleA@20
|
||||
WriteConsoleInputA@16
|
||||
WriteConsoleInputVDMA@16
|
||||
|
|
|
@ -1603,3 +1603,19 @@ NlsGetCacheUpdateCount(VOID)
|
|||
STUB;
|
||||
return 0;
|
||||
}
|
||||
|
||||
BOOL
|
||||
STDCALL
|
||||
Wow64DisableWow64FsRedirection (VOID ** pv)
|
||||
{
|
||||
STUB;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL
|
||||
STDCALL
|
||||
Wow64RevertWow64FsRedirection (VOID * pv)
|
||||
{
|
||||
STUB;
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue