From eb48679b03498fd75b2edb6d139085e72b4a9e43 Mon Sep 17 00:00:00 2001 From: short <> Date: Sun, 23 Mar 2003 23:59:10 +0000 Subject: [PATCH] +ntoskrnl/se/sd.c - RtlCreateSecurityDescriptor() - RtlLengthSecurityDescriptor() - RtlSetDaclSecurityDescriptor() --- ntoskrnl/se/sd.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 */ -- 1.8.3.1