Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
2095ba19
Commit
2095ba19
authored
Jan 28, 2009
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Add stub implementations of Wow64DisableWow64FsRedirection and…
kernel32: Add stub implementations of Wow64DisableWow64FsRedirection and Wow64RevertWow64FsRedirection.
parent
f8313855
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+2
-0
path.c
dlls/kernel32/path.c
+20
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
2095ba19
...
...
@@ -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
...
...
dlls/kernel32/path.c
View file @
2095ba19
...
...
@@ -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.@)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment