ADS_ATTR_INFO

The ADS_ATTR_INFO structure specifies the information about operations on the named attribute in the property cache.

typedef struct  _ads_attr_info
    {
    LPWSTR pszAttrName;
    DWORD dwControlCode;
    ADSTYPE dwADsType;
    PADSVALUE pADsValues;
    DWORD dwNumValues;
    }    ADS_ATTR_INFO, *PADS_ATTR_INFO;
 

Members

pszAttrName
Pointer to a stream containing the name of the attribute.
dwControlCode
One of the ADS_ATTR_* constants that control what operation to perform on the attribute.
dwADsType
Data type of the attribute as defined by ADSTYPE.
pADsValues
Pointer to an array of ADSVALUE structures containing values for the attribute.
dwNumValues
Size of the pADsValues array.

Remarks

Memory for the array of ADSVALUE structures is not allocated with this structure.