From: short <> Date: Sun, 23 Mar 2003 23:59:10 +0000 (+0000) Subject: +ntoskrnl/se/sd.c X-Git-Tag: captive-0_2~43 X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=commitdiff_plain;h=eb48679b03498fd75b2edb6d139085e72b4a9e43 +ntoskrnl/se/sd.c - RtlCreateSecurityDescriptor() - RtlLengthSecurityDescriptor() - RtlSetDaclSecurityDescriptor() --- diff --git a/ntoskrnl/se/sd.c b/ntoskrnl/se/sd.c index 463fba2..7c9ca64 100644 --- a/ntoskrnl/se/sd.c +++ b/ntoskrnl/se/sd.c @@ -44,6 +44,7 @@ RtlCreateSecurityDescriptor(PSECURITY_DESCRIPTOR SecurityDescriptor, return(STATUS_SUCCESS); } + ULONG STDCALL RtlLengthSecurityDescriptor(PSECURITY_DESCRIPTOR SecurityDescriptor) { @@ -99,6 +100,7 @@ RtlLengthSecurityDescriptor(PSECURITY_DESCRIPTOR SecurityDescriptor) return(Length); } +#ifndef LIBCAPTIVE NTSTATUS STDCALL RtlGetDaclSecurityDescriptor(PSECURITY_DESCRIPTOR SecurityDescriptor, @@ -143,6 +145,7 @@ RtlGetDaclSecurityDescriptor(PSECURITY_DESCRIPTOR SecurityDescriptor, return(STATUS_SUCCESS); } +#endif /* LIBCAPTIVE */ NTSTATUS STDCALL RtlSetDaclSecurityDescriptor(PSECURITY_DESCRIPTOR SecurityDescriptor, @@ -173,6 +176,7 @@ RtlSetDaclSecurityDescriptor(PSECURITY_DESCRIPTOR SecurityDescriptor, return(STATUS_SUCCESS); } +#ifndef LIBCAPTIVE BOOLEAN STDCALL RtlValidSecurityDescriptor(PSECURITY_DESCRIPTOR SecurityDescriptor) @@ -389,6 +393,6 @@ RtlAbsoluteToSelfRelativeSD(PSECURITY_DESCRIPTOR AbsSD, return(STATUS_NOT_IMPLEMENTED); } - +#endif /* LIBCAPTIVE */ /* EOF */