Commit de047225 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Created stub functions for advapi32.GetExplicitEntriesFromAclA/W().

parent 6c579880
...@@ -96,6 +96,8 @@ ...@@ -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, ...@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment