Stub implementation of RtlAbsoluteToSelfRelativeSD.
This commit is contained in:
parent
2a438aa033
commit
9a99a39e0b
|
@ -277,7 +277,7 @@
|
|||
@ stub PfxRemovePrefix
|
||||
@ stub RestoreEm87Context
|
||||
@ stub RtlAbortRXact
|
||||
@ stub RtlAbsoluteToSelfRelativeSD
|
||||
@ stdcall RtlAbsoluteToSelfRelativeSD(ptr ptr ptr)
|
||||
@ stdcall RtlAcquirePebLock()
|
||||
@ stdcall RtlAcquireResourceExclusive(ptr long)
|
||||
@ stdcall RtlAcquireResourceShared(ptr long)
|
||||
|
|
|
@ -831,6 +831,21 @@ NTSTATUS WINAPI RtlSelfRelativeToAbsoluteSD(
|
|||
return status;
|
||||
}
|
||||
|
||||
|
||||
/**************************************************************************
|
||||
* RtlAbsoluteToSelfRelativeSD [NTDLL.@]
|
||||
*/
|
||||
NTSTATUS WINAPI RtlAbsoluteToSelfRelativeSD(
|
||||
PSECURITY_DESCRIPTOR AbsoluteSecurityDescriptor,
|
||||
PSECURITY_DESCRIPTOR SelfRelativeSecurityDescriptor,
|
||||
PULONG BufferLength)
|
||||
{
|
||||
FIXME("%p %p %p\n", AbsoluteSecurityDescriptor,
|
||||
SelfRelativeSecurityDescriptor, BufferLength);
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* access control list's
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue