Commit 4adf3bc0 authored by Alexandre Julliard's avatar Alexandre Julliard

wow64: Use the generated syscall list.

parent ade158ea
......@@ -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_SYSCALLS32
#undef SYSCALL_ENTRY
};
static const char *syscall_names[] =
{
#define SYSCALL_ENTRY(func) #func,
ALL_SYSCALLS
#define SYSCALL_ENTRY(id,name,args) #name,
ALL_SYSCALLS32
#undef SYSCALL_ENTRY
};
......
......@@ -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_SYSCALLS32
#undef SYSCALL_ENTRY
extern void init_image_mapping( HMODULE module ) DECLSPEC_HIDDEN;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment