ntdll: Implement KiUserApcDispatcher().

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2020-08-06 19:31:06 +02:00
parent 55227375e9
commit 2a08e0e290
2 changed files with 12 additions and 1 deletions

View file

@ -67,7 +67,7 @@
# @ stub KiFastSystemCallRet # @ stub KiFastSystemCallRet
# @ stub KiIntSystemCall # @ stub KiIntSystemCall
@ stdcall -norelay KiRaiseUserExceptionDispatcher() @ stdcall -norelay KiRaiseUserExceptionDispatcher()
@ stub KiUserApcDispatcher @ stdcall -norelay KiUserApcDispatcher(ptr long long long ptr)
@ stub KiUserCallbackDispatcher @ stub KiUserCallbackDispatcher
@ stdcall -norelay KiUserExceptionDispatcher(ptr ptr) @ stdcall -norelay KiUserExceptionDispatcher(ptr ptr)
# @ stub LdrAccessOutOfProcessResource # @ stub LdrAccessOutOfProcessResource

View file

@ -74,6 +74,17 @@ int __cdecl __wine_dbg_output( const char *str )
} }
/*******************************************************************
* KiUserApcDispatcher (NTDLL.@)
*/
void WINAPI KiUserApcDispatcher( CONTEXT *context, ULONG_PTR ctx, ULONG_PTR arg1, ULONG_PTR arg2,
PNTAPCFUNC func )
{
func( ctx, arg1, arg2 );
NtContinue( context, TRUE );
}
/*********************************************************************** /***********************************************************************
* RtlExitUserThread (NTDLL.@) * RtlExitUserThread (NTDLL.@)
*/ */