18 Jul
2005
18 Jul
'05
8:39 a.m.
Hans Leidekker <hans(a)it.vu.nl> 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_printf( berelement, fmt, valist ); + va_end( valist );
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. -- Alexandre Julliard julliard(a)winehq.org
7542
Age (days ago)
7542
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard