Created stub functions for advapi32.GetExplicitEntriesFromAclA/W().
This commit is contained in:
parent
6c579880c9
commit
de047225bb
|
@ -96,6 +96,8 @@
|
||||||
@ stdcall GetAclInformation(ptr ptr long long)
|
@ stdcall GetAclInformation(ptr ptr long long)
|
||||||
@ stdcall GetCurrentHwProfileA(ptr)
|
@ stdcall GetCurrentHwProfileA(ptr)
|
||||||
@ stub GetEffectiveRightsFromAclA
|
@ stub GetEffectiveRightsFromAclA
|
||||||
|
@ stdcall GetExplicitEntriesFromAclA(ptr ptr ptr)
|
||||||
|
@ stdcall GetExplicitEntriesFromAclW(ptr ptr ptr)
|
||||||
@ stdcall GetFileSecurityA(str long ptr long ptr)
|
@ stdcall GetFileSecurityA(str long ptr long ptr)
|
||||||
@ stdcall GetFileSecurityW(wstr long ptr long ptr)
|
@ stdcall GetFileSecurityW(wstr long ptr long ptr)
|
||||||
@ stub GetKernelObjectSecurity
|
@ stub GetKernelObjectSecurity
|
||||||
|
|
|
@ -1398,3 +1398,23 @@ DWORD WINAPI SetNamedSecurityInfoW(LPWSTR pObjectName,
|
||||||
SecurityInfo, psidOwner, psidGroup, pDacl, pSacl);
|
SecurityInfo, psidOwner, psidGroup, pDacl, pSacl);
|
||||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* GetExplicitEntriesFromAclA [ADVAPI32.@]
|
||||||
|
*/
|
||||||
|
DWORD WINAPI GetExplicitEntriesFromAclA( PACL pacl, PULONG pcCountOfExplicitEntries,
|
||||||
|
PEXPLICIT_ACCESSA* pListOfExplicitEntries)
|
||||||
|
{
|
||||||
|
FIXME("%p %p %p\n",pacl, pcCountOfExplicitEntries, pListOfExplicitEntries);
|
||||||
|
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* GetExplicitEntriesFromAclW [ADVAPI32.@]
|
||||||
|
*/
|
||||||
|
DWORD WINAPI GetExplicitEntriesFromAclW( PACL pacl, PULONG pcCountOfExplicitEntries,
|
||||||
|
PEXPLICIT_ACCESSW* pListOfExplicitEntries)
|
||||||
|
{
|
||||||
|
FIXME("%p %p %p\n",pacl, pcCountOfExplicitEntries, pListOfExplicitEntries);
|
||||||
|
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue