wow64: Add a stub for Wow64ApcRoutine().

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2021-07-23 17:00:39 +02:00
parent e1a4fbe730
commit d1171c7d10
3 changed files with 12 additions and 1 deletions

View File

@ -398,6 +398,15 @@ NTSTATUS WINAPI Wow64SystemServiceEx( UINT num, UINT *args )
}
/**********************************************************************
* Wow64ApcRoutine (NTDLL.@)
*/
void WINAPI Wow64ApcRoutine( ULONG_PTR arg1, ULONG_PTR arg2, ULONG_PTR arg3, CONTEXT *context )
{
FIXME( "stub %lx %lx %lx\n", arg1, arg2, arg3 );
}
/**********************************************************************
* Wow64LdrpInitialize (NTDLL.@)
*/

View File

@ -1,7 +1,7 @@
@ stub Wow64AllocThreadHeap
@ stub Wow64AllocateHeap
@ stub Wow64AllocateTemp
@ stub Wow64ApcRoutine
@ stdcall Wow64ApcRoutine(long long long ptr)
@ stub Wow64CheckIfNXEnabled
@ stub Wow64EmulateAtlThunk
@ stub Wow64FreeHeap

View File

@ -28,6 +28,8 @@
ALL_SYSCALLS
#undef SYSCALL_ENTRY
void WINAPI Wow64ApcRoutine( ULONG_PTR arg1, ULONG_PTR arg2, ULONG_PTR arg3, CONTEXT *context ) DECLSPEC_HIDDEN;
extern USHORT native_machine DECLSPEC_HIDDEN;
extern USHORT current_machine DECLSPEC_HIDDEN;