From 0390d46de9560ccbd76777441ec7377b2af94d5c Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Thu, 27 Feb 2003 22:49:06 +0000 Subject: [PATCH] Fixed [Nt/Zw]QuerySecurityObject() prototype. svn path=/trunk/; revision=4212 --- reactos/include/ntos/zw.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/reactos/include/ntos/zw.h b/reactos/include/ntos/zw.h index 82527c90d99..43f7ce72a5e 100755 --- a/reactos/include/ntos/zw.h +++ b/reactos/include/ntos/zw.h @@ -1,5 +1,5 @@ -/* $Id: zw.h,v 1.7 2003/02/27 15:39:10 gdalsnes Exp $ +/* $Id: zw.h,v 1.8 2003/02/27 22:49:06 ekohl Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -4966,21 +4966,21 @@ ZwQueryObject( NTSTATUS STDCALL NtQuerySecurityObject( - IN HANDLE Object, - IN CINT SecurityObjectInformationClass, - OUT PVOID SecurityObjectInformation, + IN HANDLE Handle, + IN SECURITY_INFORMATION SecurityInformation, + OUT PSECURITY_DESCRIPTOR SecurityDescriptor, IN ULONG Length, - OUT PULONG ReturnLength + OUT PULONG ResultLength ); NTSTATUS STDCALL ZwQuerySecurityObject( - IN HANDLE Object, - IN CINT SecurityObjectInformationClass, - OUT PVOID SecurityObjectInformation, + IN HANDLE Handle, + IN SECURITY_INFORMATION SecurityInformation, + OUT PSECURITY_DESCRIPTOR SecurityDescriptor, IN ULONG Length, - OUT PULONG ReturnLength + OUT PULONG ResultLength ); /*