Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 104 of file sec.c.
Referenced by AccRewriteGetHandleRights(), DumpOwner(), ReloadPrincipalsList(), and SetupCommitFileQueueW().
{ BOOLEAN OwnerDefaulted; NTSTATUS Status; Status = RtlGetOwnerSecurityDescriptor(pSecurityDescriptor, pOwner, &OwnerDefaulted); *lpbOwnerDefaulted = (BOOL)OwnerDefaulted; if (!NT_SUCCESS(Status)) { SetLastError(RtlNtStatusToDosError(Status)); return FALSE; } return TRUE; }