Re: WLDAP32: implement ber_* functions

2005-07-18 Thread Alexandre Julliard
Hans Leidekker <[EMAIL PROTECTED]> writes: > > This won't work I'm afraid, you would need a ber_vprintf. Though it > > seems to me you could link directly to the Unix lib from the spec file > > and avoid all the wrappers. > > Indeed, I can. Unlike with the ldap_* functions there are no encoding

Re: WLDAP32: implement ber_* functions

2005-07-18 Thread Alexandre Julliard
Hans Leidekker <[EMAIL PROTECTED]> writes: > +INT WLDAP32_ber_printf( BerElement *berelement, PCHAR fmt, ... ) > +{ > +INT ret = LBER_ERROR; > +#ifdef HAVE_LBER_H > +va_list valist; > + > +TRACE( "(%p, %p)\n", berelement, fmt ); > + > +va_start( valist, fmt ); > +ret = ber_prin