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:
parent
1db28d439e
commit
d8d759af5b
|
@ -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.@)
|
||||
*/
|
||||
|
|
|
@ -168,7 +168,7 @@
|
|||
@ stub ExRaiseStatus
|
||||
@ stub ExRegisterCallback
|
||||
@ stub ExReinitializeResourceLite
|
||||
@ stub ExReleaseResourceForThreadLite
|
||||
@ stdcall ExReleaseResourceForThreadLite(ptr long)
|
||||
@ stub ExSemaphoreObjectType
|
||||
@ stub ExSetResourceOwnerPointer
|
||||
@ stub ExSetTimerResolution
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue