Directory Services

ldap_count_values_len

The ldap_count_values_len function counts the number of values in a list.

ULONG ldap_count_values_len(
  struct berval** vals
);

Parameters

vals
[in] An array of values returned by ldap_get_values_len.

Return Values

This function returns the number of values in the array. There is no error return.

If a NULL pointer is passed as the argument, 0 is returned. If an invalid argument is passed, the value returned is undefined.

Remarks

The ldap_count_values_len function returns the number of binary values in an array of berval structures. To count the values in an array of null-terminated character strings, call ldap_count_values.

Requirements

Client: Included in Windows XP and Windows 2000 Professional.
Server: Included in Windows Server 2003 and Windows 2000 Server.
Redistributable: Requires Active Directory Client Extension on Windows NT 4.0 SP6a and Windows 95/98/Me.
Header: Declared in Winldap.h.
Library: Use Wldap32.lib.

See Also

berval, Functions, ldap_count_values, ldap_get_values_len, LDAP