Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 108 of file dn.c.
{ PCHAR *ret = NULL; #ifdef HAVE_LDAP WCHAR *dnW, **retW; TRACE( "(%s, 0x%08x)\n", debugstr_a(dn), notypes ); dnW = strAtoW( dn ); if (!dnW) return NULL; retW = ldap_explode_dnW( dnW, notypes ); ret = strarrayWtoA( retW ); strfreeW( dnW ); ldap_value_freeW( retW ); #endif return ret; }