IAccessControl::GetAllAccessRights (Compact 2013)

3/26/2014

This method gets the entire list of access rights and/or the owner and group for the specified object.

Syntax

HRESULT GetAllAccessRights(
  LPWSTR lpProperty, 
  PACTRL_ACCESSW* ppAccessList, 
  PTRUSTEEW* ppOwner, 
  PTRUSTEEW* ppGroup 
);

Parameters

  • lpProperty
    [in] Name of the property. If you are using the COM implementation of IAccessControl, this parameter must be NULL.
  • ppAccessList
    [out] Address of PACTRL_ACCESSW pointer variable that receives a pointer to the access list structure.

    May not be NULL.

    If the call succeeds, the caller must free the allocated memory with the CoTaskMemFree function.

    Note that the memory is allocated (all_nodes), which means that all the substructures are allocated in one block. Therefore, the entire data structure must be freed by a single call to CoTaskMemFree.

  • ppOwner
    [out] Address of PTRUSTEEW pointer variable that receives a pointer to the owner's TRUSTEEW structure.

    If this parameter is not NULL and the function succeeds, the caller must free the memory with CoTaskMemFree.

  • ppGroup
    [out] Address of PTRUSTEEW pointer variable that receives a pointer to the group's TRUSTEEW structure.

    If this parameter is not NULL and the function succeeds, the caller must free the memory with CoTaskMemFree.

Return Value

None.

Remarks

To determine whether the platform supports this interface, see Determining Supported COM APIs.

Requirements

Header

iaccess.h

Library

ole32.lib,
uuid.lib

See Also

Reference

IAccessControl
CoTaskMemFree
IAccessControl::GrantAccessRights
IAccessControl::SetAccessRights