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
bf48ebf2
Commit
bf48ebf2
authored
Jan 18, 2023
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 27, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/tests: Fix some Wow64 test failures on Windows 11.
parent
72e7ff64
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
wow64.c
dlls/ntdll/tests/wow64.c
+4
-1
No files found.
dlls/ntdll/tests/wow64.c
View file @
bf48ebf2
...
...
@@ -662,7 +662,8 @@ static NTSTATUS call_func64( ULONG64 func64, int nb_args, ULONG64 *args )
return
func
(
func64
,
nb_args
,
args
);
}
static
ULONG64
main_module
,
ntdll_module
,
wow64_module
,
wow64cpu_module
,
wow64win_module
;
static
ULONG64
main_module
,
ntdll_module
,
wow64_module
,
wow64base_module
,
wow64con_module
,
wow64cpu_module
,
wow64win_module
;
static
void
enum_modules64
(
void
(
*
func
)(
ULONG64
,
const
WCHAR
*
)
)
{
...
...
@@ -776,6 +777,8 @@ static void check_module( ULONG64 base, const WCHAR *name )
#define CHECK_MODULE(mod) if (!wcsicmp( name, L"" #mod ".dll" )) { mod ## _module = base; return; }
CHECK_MODULE
(
ntdll
);
CHECK_MODULE
(
wow64
);
CHECK_MODULE
(
wow64base
);
CHECK_MODULE
(
wow64con
);
CHECK_MODULE
(
wow64cpu
);
CHECK_MODULE
(
wow64win
);
#undef CHECK_MODULE
...
...
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