ntoskrnl.exe: Add stub for ExUnregisterCallback() function.

Signed-off-by: Paul Gofman <pgofman@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Paul Gofman 2020-05-29 10:53:07 +03:00 committed by Alexandre Julliard
parent 7bc99ae125
commit 9effc3f963
3 changed files with 7 additions and 1 deletions

View File

@ -2071,6 +2071,11 @@ void * WINAPI ExRegisterCallback(PCALLBACK_OBJECT callback_object,
return (void *)0xdeadbeef;
}
void WINAPI ExUnregisterCallback(void *callback_registration)
{
FIXME("callback_registration %p stub.\n", callback_registration);
}
/***********************************************************************
* ExFreePool (NTOSKRNL.EXE.@)
*/

View File

@ -191,7 +191,7 @@
@ stdcall ExSetTimerResolution(long long)
@ stub ExSystemExceptionFilter
@ stdcall ExSystemTimeToLocalTime(ptr ptr) RtlSystemTimeToLocalTime
@ stub ExUnregisterCallback
@ stdcall ExUnregisterCallback(ptr)
@ stdcall ExUuidCreate(ptr)
@ stub ExVerifySuite
@ stub ExWindowStationObjectType

View File

@ -1632,6 +1632,7 @@ void * WINAPI ExRegisterCallback(PCALLBACK_OBJECT,PCALLBACK_FUNCTION,void*);
void FASTCALL ExReleaseFastMutexUnsafe(PFAST_MUTEX);
void WINAPI ExReleaseResourceForThreadLite(ERESOURCE*,ERESOURCE_THREAD);
ULONG WINAPI ExSetTimerResolution(ULONG,BOOLEAN);
void WINAPI ExUnregisterCallback(void*);
void WINAPI IoAcquireCancelSpinLock(KIRQL*);
NTSTATUS WINAPI IoAcquireRemoveLockEx(IO_REMOVE_LOCK*,void*,const char*,ULONG, ULONG);