Commit 1db28d43 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntoskrnl.exe: Add ExDeleteResourceLite stub.

parent 08384597
......@@ -2289,6 +2289,15 @@ BOOLEAN WINAPI ExAcquireResourceExclusiveLite( PERESOURCE resource, BOOLEAN wait
return TRUE;
}
/***********************************************************************
* ExDeleteResourceLite (NTOSKRNL.EXE.@)
*/
NTSTATUS WINAPI ExDeleteResourceLite(PERESOURCE resource)
{
FIXME("(%p): stub\n", resource);
return STATUS_NOT_IMPLEMENTED;
}
/*****************************************************
* ExInterlockedRemoveHeadList (NTOSKRNL.EXE.@)
*/
......
......@@ -125,7 +125,7 @@
@ stdcall ExCreateCallback(ptr ptr long long)
@ stub ExDeleteNPagedLookasideList
@ stub ExDeletePagedLookasideList
@ stub ExDeleteResourceLite
@ stdcall ExDeleteResourceLite(ptr)
@ stub ExDesktopObjectType
@ stub ExDisableResourceBoostLite
@ stub ExEnumHandleTable
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment