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
4adf3bc0
Commit
4adf3bc0
authored
Nov 16, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wow64: Use the generated syscall list.
parent
ade158ea
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
syscall.c
dlls/wow64/syscall.c
+4
-4
syscall.h
dlls/wow64/syscall.h
+0
-0
wow64_private.h
dlls/wow64/wow64_private.h
+3
-3
No files found.
dlls/wow64/syscall.c
View file @
4adf3bc0
...
...
@@ -44,15 +44,15 @@ typedef NTSTATUS (WINAPI *syscall_thunk)( UINT *args );
static
const
syscall_thunk
syscall_thunks
[]
=
{
#define SYSCALL_ENTRY(
func) wow64_ ## func
,
ALL_SYSCALLS
#define SYSCALL_ENTRY(
id,name,args) wow64_ ## name
,
ALL_SYSCALLS
32
#undef SYSCALL_ENTRY
};
static
const
char
*
syscall_names
[]
=
{
#define SYSCALL_ENTRY(
func) #func
,
ALL_SYSCALLS
#define SYSCALL_ENTRY(
id,name,args) #name
,
ALL_SYSCALLS
32
#undef SYSCALL_ENTRY
};
...
...
dlls/wow64/syscall.h
deleted
100644 → 0
View file @
ade158ea
This diff is collapsed.
Click to expand it.
dlls/wow64/wow64_private.h
View file @
4adf3bc0
...
...
@@ -21,11 +21,11 @@
#ifndef __WOW64_PRIVATE_H
#define __WOW64_PRIVATE_H
#include "
syscall
.h"
#include "
../ntdll/ntsyscalls
.h"
#include "struct32.h"
#define SYSCALL_ENTRY(
func) extern NTSTATUS WINAPI wow64_ ## func( UINT *args ) DECLSPEC_HIDDEN
;
ALL_SYSCALLS
#define SYSCALL_ENTRY(
id,name,_args) extern NTSTATUS WINAPI wow64_ ## name( UINT *args )
;
ALL_SYSCALLS
32
#undef SYSCALL_ENTRY
extern
void
init_image_mapping
(
HMODULE
module
)
DECLSPEC_HIDDEN
;
...
...
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