+ntoskrnl/se/sd.c
authorshort <>
Sun, 23 Mar 2003 23:59:10 +0000 (23:59 +0000)
committershort <>
Sun, 23 Mar 2003 23:59:10 +0000 (23:59 +0000)
 - RtlCreateSecurityDescriptor()
 - RtlLengthSecurityDescriptor()
 - RtlSetDaclSecurityDescriptor()

ntoskrnl/se/sd.c

index 463fba2..7c9ca64 100644 (file)
@@ -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 */