export GetSecurityInfo()

svn path=/trunk/; revision=10064
This commit is contained in:
Thomas Bluemel 2004-07-10 14:38:24 +00:00
parent 5b9cf862e0
commit 35f4d34682
3 changed files with 25 additions and 5 deletions

View file

@ -1,4 +1,4 @@
; $Id: advapi32.def,v 1.19 2004/05/26 09:50:09 weiden Exp $
; $Id: advapi32.def,v 1.20 2004/07/10 14:38:23 weiden Exp $
;
; advapi32.def
;
@ -155,7 +155,7 @@ GetSecurityDescriptorGroup@12
GetSecurityDescriptorLength@4
GetSecurityDescriptorOwner@12
GetSecurityDescriptorSacl@16
;GetSecurityInfo@32
GetSecurityInfo@32
GetServiceDisplayNameA@16
GetServiceDisplayNameW@16
GetServiceKeyNameA@16

View file

@ -1,4 +1,4 @@
; $Id: advapi32.edf,v 1.39 2004/05/26 09:50:10 weiden Exp $
; $Id: advapi32.edf,v 1.40 2004/07/10 14:38:23 weiden Exp $
;
; advapi32.edf
;
@ -151,7 +151,7 @@ GetSecurityDescriptorGroup=GetSecurityDescriptorGroup@12
GetSecurityDescriptorLength=GetSecurityDescriptorLength@4
GetSecurityDescriptorOwner=GetSecurityDescriptorOwner@12
GetSecurityDescriptorSacl=GetSecurityDescriptorSacl@16
;GetSecurityInfo=GetSecurityInfo@32
GetSecurityInfo=GetSecurityInfo@32
GetServiceDisplayNameA=GetServiceDisplayNameA@16
GetServiceDisplayNameW=GetServiceDisplayNameW@16
GetServiceKeyNameA=GetServiceKeyNameA@16

View file

@ -1,4 +1,4 @@
/* $Id: misc.c,v 1.20 2004/07/09 20:10:45 navaraf Exp $
/* $Id: misc.c,v 1.21 2004/07/10 14:38:24 weiden Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
@ -668,4 +668,24 @@ SetNamedSecurityInfoA(LPSTR pObjectName,
return ERROR_CALL_NOT_IMPLEMENTED;
}
/**********************************************************************
* GetSecurityInfo EXPORTED
*
* @unimplemented
*/
DWORD STDCALL
GetSecurityInfo(HANDLE handle,
SE_OBJECT_TYPE ObjectType,
SECURITY_INFORMATION SecurityInfo,
PSID* ppsidOwner,
PSID* ppsidGroup,
PACL* ppDacl,
PACL* ppSacl,
PSECURITY_DESCRIPTOR* ppSecurityDescriptor)
{
DPRINT1("GetSecurityInfo: stub\n");
return ERROR_CALL_NOT_IMPLEMENTED;
}
/* EOF */