Stub for GetSecurityInfoExW().

This commit is contained in:
Chris Morgan 2002-12-19 04:15:23 +00:00 committed by Alexandre Julliard
parent afba1593c1
commit ee8411f4b0
2 changed files with 16 additions and 0 deletions

View File

@ -110,6 +110,7 @@
@ stdcall GetSecurityDescriptorOwner(ptr ptr ptr) GetSecurityDescriptorOwner
@ stdcall GetSecurityDescriptorSacl (ptr ptr ptr ptr) GetSecurityDescriptorSacl
@ stub GetSecurityInfo #(long long long ptr ptr ptr ptr ptr) GetSecurityInfo
@ stdcall GetSecurityInfoExW (long long long wstr wstr ptr ptr wstr wstr) GetSecurityInfoExW
@ stub GetServiceDisplayNameA
@ stub GetServiceDisplayNameW
@ stub GetServiceKeyNameA

View File

@ -26,6 +26,7 @@
#include "heap.h"
#include "winternl.h"
#include "ntsecapi.h"
#include "accctrl.h"
#include "wine/debug.h"
#include "wine/unicode.h"
@ -1092,3 +1093,17 @@ BOOL WINAPI PrivilegeCheck( HANDLE ClientToken, PPRIVILEGE_SET RequiredPrivilege
*pfResult=TRUE;
return TRUE;
}
/******************************************************************************
* GetSecurityInfoExW [ADVAPI32.@]
*/
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
)
{
FIXME("stub!\n");
return ERROR_BAD_PROVIDER;
}