add stubs GetSecurityInfoExA/W

svn path=/trunk/; revision=11764
This commit is contained in:
Gunnar Dalsnes 2004-11-21 20:14:36 +00:00
parent 98e47a5b69
commit 55ff4ad170
2 changed files with 45 additions and 2 deletions

View file

@ -1,4 +1,4 @@
; $Id: advapi32.def,v 1.24 2004/09/26 20:26:13 gvg Exp $
; $Id: advapi32.def,v 1.25 2004/11/21 20:14:36 gdalsnes Exp $
;
; advapi32.def
;
@ -158,6 +158,8 @@ GetSecurityDescriptorLength@4
GetSecurityDescriptorOwner@12
GetSecurityDescriptorSacl@16
GetSecurityInfo@32
GetSecurityInfoExA@36
GetSecurityInfoExW@36
GetServiceDisplayNameA@16
GetServiceDisplayNameW@16
GetServiceKeyNameA@16

View file

@ -1,4 +1,4 @@
/* $Id: misc.c,v 1.26 2004/09/26 21:15:51 sedwards Exp $
/* $Id: misc.c,v 1.27 2004/11/21 20:14:36 gdalsnes Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
@ -899,6 +899,47 @@ GetSecurityInfo(HANDLE handle,
}
/******************************************************************************
* GetSecurityInfoExW EXPORTED
*/
DWORD WINAPI GetSecurityInfoExA(
HANDLE hObject,
SE_OBJECT_TYPE ObjectType,
SECURITY_INFORMATION SecurityInfo,
LPCSTR lpProvider,
LPCSTR lpProperty,
PACTRL_ACCESSA *ppAccessList,
PACTRL_AUDITA *ppAuditList,
LPSTR *lppOwner,
LPSTR *lppGroup
)
{
DPRINT1("GetSecurityInfoExA stub!\n");
return ERROR_BAD_PROVIDER;
}
/******************************************************************************
* GetSecurityInfoExW EXPORTED
*/
DWORD WINAPI GetSecurityInfoExW(
HANDLE hObject,
SE_OBJECT_TYPE ObjectType,
SECURITY_INFORMATION SecurityInfo,
LPCWSTR lpProvider,
LPCWSTR lpProperty,
PACTRL_ACCESSW *ppAccessList,
PACTRL_AUDITW *ppAuditList,
LPWSTR *lppOwner,
LPWSTR *lppGroup
)
{
DPRINT1("GetSecurityInfoExW stub!\n");
return ERROR_BAD_PROVIDER;
}
/**********************************************************************
* ImpersonateNamedPipeClient EXPORTED
*