Share via


ldap_err2string (Windows Embedded CE 6.0)

1/6/2010

This function converts a numeric LDAP error code into a character string describing the error.

Syntax

UNICODE PTCHAR ldap_err2string(
  ULONG err
);

Parameters

  • err
    [in] LDAP error code as returned by another LDAP function.

Return Value

This function always returns NULL.

Remarks

Call ldap_err2string to convert any numeric LDAP error code into an informative, null-terminated character string message that describes the error. Be aware that some of the asynchronous calls return -1. In this case, use LdapGetLastError to retrieve the LDAP error code, and then use ldap_err2string on that value.

The return value is a static pointer to the character string. Do not free this string.

Requirements

Header winldap.h
Library wldap32.lib
Windows Embedded CE Windows CE .NET 4.0 and later

See Also

Reference

LDAP Error Handling Functions
LdapGetLastError