Commit 2d0fefbc authored by Biswapriyo Nath's avatar Biswapriyo Nath Committed by Alexandre Julliard

ntdll: Add RtlDefaultNpAcl stub.

parent cf3bb0ce
......@@ -572,7 +572,7 @@
@ stdcall RtlDecodeSystemPointer(ptr) RtlDecodePointer
@ stdcall RtlDecompressBuffer(long ptr long ptr long ptr)
@ stdcall RtlDecompressFragment(long ptr long ptr long long ptr ptr)
@ stub RtlDefaultNpAcl
@ stdcall RtlDefaultNpAcl(ptr)
@ stub RtlDelete
@ stdcall RtlDeleteAce(ptr long)
@ stdcall RtlDeleteAtomFromAtomTable(ptr long)
......
......@@ -1718,3 +1718,14 @@ NTSTATUS WINAPI RtlConvertToAutoInheritSecurityObject(
return STATUS_NOT_IMPLEMENTED;
}
/******************************************************************************
* RtlDefaultNpAcl (NTDLL.@)
*/
NTSTATUS WINAPI RtlDefaultNpAcl(PACL *pAcl)
{
FIXME("%p - stub\n", pAcl);
*pAcl = NULL;
return STATUS_SUCCESS;
}
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