table of contents
other versions
- wheezy 1.4.1-4
ldap_get_valuesW(3w) | Wine API | ldap_get_valuesW(3w) |
NAME¶
ldap_get_valuesW (WLDAP32.@)SYNOPSIS¶
PWCHAR * CDECL ldap_get_valuesW(
WLDAP32_LDAP* ld,
WLDAP32_LDAPMessage* entry,
PWCHAR attr
)
DESCRIPTION¶
Retrieve string values for a given attribute.PARAMS¶
ld [In] Pointer to an LDAP context. entry [In] Entry to retrieve values from. attr [In] Attribute to retrieve values for.RETURNS¶
Success: Pointer to a character array holding the values. Failure: NULL.NOTES¶
Call ldap_get_valuesW with the result of a call to ldap_first_entry or ldap_next_entry. Free the returned array with a call to ldap_value_freeW.IMPLEMENTATION¶
Declared in "winldap_private.h". Implemented in "dlls/wldap32/value.c".Oct 2012 | Wine API |