Stub implementation of RtlAbsoluteToSelfRelativeSD.

This commit is contained in:
Mike McCormack 2005-03-30 10:22:51 +00:00 committed by Alexandre Julliard
parent 2a438aa033
commit 9a99a39e0b
2 changed files with 16 additions and 1 deletions

View File

@ -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)

View File

@ -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
*/