ADS_SEARCH_COLUMN

Specifies the contents of a search column in the query returned from the directory service database.

typedef struct ads_search_column
    {
    LPWSTR pszAttrName;
    ADSTYPE dwADsType;
    PADSVALUE pADsValues;
    DWORD dwNumValues;
    HANDLE hReserved;
    }    ADS_SEARCH_COLUMN;
 
typedef struct ads_search_column __RPC_FAR *PADS_SEARCH_COLUMN;
 

Members

pszAttrName
Pointer to a string containing the name of the attribute whose values are contained in the current search column.
dwADsType
Value from the ADSTYPE enumeration indicating how the attribute values are to be interpreted.
pADsValues
Array of ADSVALUE structures containing values of the attribute in the current search column for the current row.
dwNumValues
Size of the pADsValues array.
hReserved
Reserved for future use. Must be NULL.

Remarks

The ADS_SEARCH_COLUMN structure contains only a pointer to the array of ADSVALUE structures. Memory for the structure must be allocated separately.