ntoskrnl.exe: Add ExReleaseResourceForThreadLite stub.

Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Austin English 2015-11-08 23:34:58 -06:00 committed by Alexandre Julliard
parent 1db28d439e
commit d8d759af5b
3 changed files with 12 additions and 1 deletions

View file

@ -2321,6 +2321,14 @@ PLIST_ENTRY WINAPI ExfInterlockedRemoveHeadList(PLIST_ENTRY head, PKSPIN_LOCK lo
return ExInterlockedRemoveHeadList( head, lock );
}
/***********************************************************************
* ExReleaseResourceForThreadLite (NTOSKRNL.EXE.@)
*/
void WINAPI ExReleaseResourceForThreadLite( PERESOURCE resource, ERESOURCE_THREAD tid )
{
FIXME( "stub: %p %lu\n", resource, tid );
}
/***********************************************************************
* KeEnterCriticalRegion (NTOSKRNL.EXE.@)
*/

View file

@ -168,7 +168,7 @@
@ stub ExRaiseStatus
@ stub ExRegisterCallback
@ stub ExReinitializeResourceLite
@ stub ExReleaseResourceForThreadLite
@ stdcall ExReleaseResourceForThreadLite(ptr long)
@ stub ExSemaphoreObjectType
@ stub ExSetResourceOwnerPointer
@ stub ExSetTimerResolution

View file

@ -32,6 +32,9 @@ typedef LONG KPRIORITY;
typedef ULONG_PTR KSPIN_LOCK, *PKSPIN_LOCK;
typedef ULONG_PTR ERESOURCE_THREAD;
typedef ERESOURCE_THREAD *PERESOURCE_THREAD;
struct _KDPC;
struct _KAPC;
struct _IRP;