mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
advapi32: Improve the stub for GetEffectiveRightsFromAclA.
This commit is contained in:
parent
c4d12bde2b
commit
c0d79c475b
1 changed files with 2 additions and 1 deletions
|
@ -1100,7 +1100,8 @@ GetEffectiveRightsFromAclA( PACL pacl, PTRUSTEEA pTrustee, PACCESS_MASK pAccessR
|
|||
{
|
||||
FIXME("%p %p %p - stub\n", pacl, pTrustee, pAccessRights);
|
||||
|
||||
return 1;
|
||||
*pAccessRights = STANDARD_RIGHTS_ALL | SPECIFIC_RIGHTS_ALL;
|
||||
return 0;
|
||||
}
|
||||
|
||||
DWORD WINAPI
|
||||
|
|
Loading…
Reference in a new issue