Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
483a2203
Commit
483a2203
authored
May 11, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernelbase: Move Wow64EnableWow64FsRedirection() from kernel32 to kernelbase.
Following recent Windows versions.
parent
6b90aea8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
12 deletions
+13
-12
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-1
path.c
dlls/kernel32/path.c
+0
-11
file.c
dlls/kernelbase/file.c
+11
-0
kernelbase.spec
dlls/kernelbase/kernelbase.spec
+1
-0
No files found.
dlls/kernel32/kernel32.spec
View file @
483a2203
...
...
@@ -1632,8 +1632,8 @@
# @ stub WerpStringLookup
@ stdcall -import WideCharToMultiByte(long long wstr long ptr long ptr ptr)
@ stdcall WinExec(str long)
@ stdcall Wow64EnableWow64FsRedirection(long) KERNEL32_Wow64EnableWow64FsRedirection
@ stdcall -import Wow64DisableWow64FsRedirection(ptr)
@ stdcall -import Wow64EnableWow64FsRedirection(long)
@ stdcall Wow64GetThreadContext(long ptr)
@ stdcall Wow64GetThreadSelectorEntry(long long ptr)
@ stdcall -import Wow64RevertWow64FsRedirection(ptr)
...
...
dlls/kernel32/path.c
View file @
483a2203
...
...
@@ -378,17 +378,6 @@ UINT WINAPI GetSystemDirectoryA( LPSTR path, UINT count )
/***********************************************************************
* Wow64EnableWow64FsRedirection (KERNEL32.@)
*
* Microsoft C++ Redistributable installers are depending on all %eax bits being set.
*/
DWORD
/*BOOLEAN*/
WINAPI
KERNEL32_Wow64EnableWow64FsRedirection
(
BOOLEAN
enable
)
{
return
set_ntstatus
(
RtlWow64EnableFsRedirection
(
enable
));
}
/***********************************************************************
* wine_get_unix_file_name (KERNEL32.@) Not a Windows API
*
* Return the full Unix file name for a given path.
...
...
dlls/kernelbase/file.c
View file @
483a2203
...
...
@@ -2859,6 +2859,17 @@ BOOL WINAPI DECLSPEC_HOTPATCH Wow64DisableWow64FsRedirection( PVOID *old_value )
/***********************************************************************
* Wow64EnableWow64FsRedirection (kernelbase.@)
*
* Microsoft C++ Redistributable installers are depending on all %eax bits being set.
*/
DWORD
/*BOOLEAN*/
WINAPI
kernelbase_Wow64EnableWow64FsRedirection
(
BOOLEAN
enable
)
{
return
set_ntstatus
(
RtlWow64EnableFsRedirection
(
enable
));
}
/***********************************************************************
* Wow64RevertWow64FsRedirection (kernelbase.@)
*/
BOOL
WINAPI
DECLSPEC_HOTPATCH
Wow64RevertWow64FsRedirection
(
PVOID
old_value
)
...
...
dlls/kernelbase/kernelbase.spec
View file @
483a2203
...
...
@@ -1757,6 +1757,7 @@
# @ stub WerpNotifyUseStringResource
@ stdcall WideCharToMultiByte(long long wstr long ptr long ptr ptr)
@ stdcall Wow64DisableWow64FsRedirection(ptr)
@ stdcall Wow64EnableWow64FsRedirection(long) kernelbase_Wow64EnableWow64FsRedirection
@ stdcall Wow64RevertWow64FsRedirection(ptr)
# @ stub Wow64SetThreadDefaultGuestMachine
# @ stub -arch=i386 Wow64Transition
...
...
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