Scroll to navigation

ldap_add_extW(3w) Wine API ldap_add_extW(3w)

NAME

ldap_add_extW (WLDAP32.@)

SYNOPSIS

ULONG CDECL ldap_add_extW
(
WLDAP32_LDAP* ld,
PWCHAR dn, LDAPModW* attrs[] PLDAPControlW* serverctrls,
PLDAPControlW* clientctrls,
ULONG* message
)
 

DESCRIPTION

Add an entry to a directory tree (asynchronous operation).
 

PARAMS

ld [In] Pointer to an LDAP context.
dn [In] DN of the entry to add.
attrs [In] Pointer to an array of LDAPModW structures, each specifying an attribute and its values to add.
serverctrls [In] Array of LDAP server controls.
clientctrls [In] Array of LDAP client controls.
message [Out] Message Id of the add operation.
 

RETURNS

Success: LDAP_SUCCESS
Failure: An LDAP error code.
 

NOTES

Call ldap_result with the message Id to get the result of the operation. The serverctrls and clientctrls parameters are optional and should be set to NULL if not used.
 

IMPLEMENTATION

Declared in "winldap_private.h".
Implemented in "dlls/wldap32/add.c".
Oct 2012 Wine API