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
c2868b33
Commit
c2868b33
authored
Nov 16, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wow64win: Use the generated syscall list.
parent
4adf3bc0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
syscall.c
dlls/wow64win/syscall.c
+4
-4
syscall.h
dlls/wow64win/syscall.h
+0
-0
wow64win_private.h
dlls/wow64win/wow64win_private.h
+4
-4
No files found.
dlls/wow64win/syscall.c
View file @
c2868b33
...
...
@@ -30,15 +30,15 @@
static
void
*
const
win32_syscalls
[]
=
{
#define SYSCALL_ENTRY(
func) wow64_ ## func
,
ALL_
WIN32_SYSCALLS
#define SYSCALL_ENTRY(
id,name,args) wow64_ ## name
,
ALL_
SYSCALLS32
#undef SYSCALL_ENTRY
};
static
const
char
*
const
win32_syscall_names
[]
=
{
#define SYSCALL_ENTRY(
func) #func
,
ALL_
WIN32_SYSCALLS
#define SYSCALL_ENTRY(
id,name,args) #name
,
ALL_
SYSCALLS32
#undef SYSCALL_ENTRY
};
...
...
dlls/wow64win/syscall.h
deleted
100644 → 0
View file @
4adf3bc0
This diff is collapsed.
Click to expand it.
dlls/wow64win/wow64win_private.h
View file @
c2868b33
...
...
@@ -21,14 +21,14 @@
#ifndef __WOW64WIN_PRIVATE_H
#define __WOW64WIN_PRIVATE_H
#include "
syscall
.h"
#include "
../win32u/win32syscalls
.h"
#define SYSCALL_ENTRY(
func) extern NTSTATUS WINAPI wow64_ ## func( UINT *args ) DECLSPEC_HIDDEN
;
ALL_
WIN32_SYSCALLS
#define SYSCALL_ENTRY(
id,name,_args) extern NTSTATUS WINAPI wow64_ ## name( UINT *args )
;
ALL_
SYSCALLS32
#undef SYSCALL_ENTRY
typedef
NTSTATUS
(
WINAPI
*
user_callback
)(
void
*
params
,
ULONG
size
);
extern
user_callback
user_callbacks
[]
DECLSPEC_HIDDEN
;
extern
user_callback
user_callbacks
[];
struct
object_attr64
{
...
...
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