Fixed a compiler warning
[reactos.git] / reactos / lib / advapi32 / sec / sec.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS system libraries
4 * FILE: lib/advapi32/sec/sec.c
5 * PURPOSE: Registry functions
6 * PROGRAMMER: Ariadne ( ariadne@xs4all.nl)
7 * UPDATE HISTORY:
8 * Created 01/11/98
9 */
10
11 #include <ddk/ntddk.h>
12 #include <ntdll/rtl.h>
13 #include <windows.h>
14
15 DWORD
16 STDCALL
17 GetSecurityDescriptorLength (
18 PSECURITY_DESCRIPTOR pSecurityDescriptor
19 )
20 {
21 return RtlLengthSecurityDescriptor(pSecurityDescriptor);
22 }
23
24
25 /* EOF */