Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 375 of file parse.c.
{ int ret = WLDAP32_LDAP_NOT_SUPPORTED; #ifdef HAVE_LDAP LDAPControlW **controlW = NULL; TRACE( "(%p, %p, %p, %p, %p, %p)\n", ld, control, targetpos, listcount, context, errcode ); if (!ld) return ~0u; if (control) { controlW = controlarrayAtoW( control ); if (!controlW) return WLDAP32_LDAP_NO_MEMORY; } ret = ldap_parse_vlv_controlW( ld, controlW, targetpos, listcount, context, errcode ); controlarrayfreeW( controlW ); #endif return ret; }