Scroll to navigation

IPropData_HrGetPropAccess(3w) Wine API IPropData_HrGetPropAccess(3w)

NAME

IPropData_HrGetPropAccess (MAPI32.@)

SYNOPSIS

static HRESULT IPropData_HrGetPropAccess
(
LPPROPDATA iface,
LPSPropTagArray* lppTags,
ULONG** lppAccess
)
 

DESCRIPTION

Get the access levels for a group of property values in an IPropData object.
 

PARAMS

iface [In] IPropData object to get access levels from.
lppTags [Out] Destination for the list of property Id's in iface.
lppAccess [Out] Destination for access level for each property in lppTags.
 

RETURNS

Success: S_OK. lppTags and lppAccess contain the property Id's and the Access level of each property value in iface.
Failure: MAPI_E_INVALID_PARAMETER, if any parameter is invalid, or MAPI_E_NOT_ENOUGH_MEMORY if memory allocation fails.
 

NOTES

- *lppTags and *lppAccess should be freed with MAPIFreeBuffer(3w) by the caller.
 

IMPLEMENTATION

Declared in "mapiutil.h".
Implemented in "dlls/mapi32/prop.c".
Debug channel "mapi".
Oct 2012 Wine API