Stub for GetSecurityInfoExW().
This commit is contained in:
parent
afba1593c1
commit
ee8411f4b0
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue