mirror of
https://github.com/reactos/reactos.git
synced 2025-01-15 18:43:27 +00:00
Fixed [Nt/Zw]QuerySecurityObject() prototype.
svn path=/trunk/; revision=4212
This commit is contained in:
parent
4b23fcb6ce
commit
0390d46de9
1 changed files with 9 additions and 9 deletions
|
@ -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
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -4966,21 +4966,21 @@ ZwQueryObject(
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
NtQuerySecurityObject(
|
NtQuerySecurityObject(
|
||||||
IN HANDLE Object,
|
IN HANDLE Handle,
|
||||||
IN CINT SecurityObjectInformationClass,
|
IN SECURITY_INFORMATION SecurityInformation,
|
||||||
OUT PVOID SecurityObjectInformation,
|
OUT PSECURITY_DESCRIPTOR SecurityDescriptor,
|
||||||
IN ULONG Length,
|
IN ULONG Length,
|
||||||
OUT PULONG ReturnLength
|
OUT PULONG ResultLength
|
||||||
);
|
);
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
ZwQuerySecurityObject(
|
ZwQuerySecurityObject(
|
||||||
IN HANDLE Object,
|
IN HANDLE Handle,
|
||||||
IN CINT SecurityObjectInformationClass,
|
IN SECURITY_INFORMATION SecurityInformation,
|
||||||
OUT PVOID SecurityObjectInformation,
|
OUT PSECURITY_DESCRIPTOR SecurityDescriptor,
|
||||||
IN ULONG Length,
|
IN ULONG Length,
|
||||||
OUT PULONG ReturnLength
|
OUT PULONG ResultLength
|
||||||
);
|
);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue