Module: wine Branch: stable Commit: b9dfdaf051ff4c8543fed7aa6b4a7ef819e17bd8 URL: https://gitlab.winehq.org/wine/wine/-/commit/b9dfdaf051ff4c8543fed7aa6b4a7ef...
Author: Alex Henrie alexhenrie24@gmail.com Date: Sat Mar 11 15:17:18 2023 -0700
wldap32: Add ldap_set_dbg_flags stub.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54663 (cherry picked from commit 6ed4a2e40e6d40d0569bbd9c57e17dca5ed12007)
---
dlls/wldap32/misc.c | 9 +++++++++ dlls/wldap32/wldap32.spec | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/dlls/wldap32/misc.c b/dlls/wldap32/misc.c index edf1f196353..5d49c412805 100644 --- a/dlls/wldap32/misc.c +++ b/dlls/wldap32/misc.c @@ -422,6 +422,15 @@ ULONG CDECL WLDAP32_ldap_result( LDAP *ld, ULONG msgid, ULONG all, struct l_time return ret; }
+/*********************************************************************** + * ldap_set_dbg_flags (WLDAP32.@) + */ +ULONG CDECL ldap_set_dbg_flags( ULONG flags ) +{ + FIXME( "(0x%lx) stub\n", flags ); + return 0; +} + /*********************************************************************** * LdapUnicodeToUTF8 (WLDAP32.@) */ diff --git a/dlls/wldap32/wldap32.spec b/dlls/wldap32/wldap32.spec index 33e630dea87..7a23a1b0f22 100644 --- a/dlls/wldap32/wldap32.spec +++ b/dlls/wldap32/wldap32.spec @@ -185,7 +185,7 @@ 195 cdecl ldap_search_ext_s(ptr str long str ptr long ptr ptr ptr long ptr) ldap_search_ext_sA 196 cdecl ldap_search_ext_sA(ptr str long str ptr long ptr ptr ptr long ptr) 197 cdecl ldap_escape_filter_element(str long ptr long) ldap_escape_filter_elementA -198 stub ldap_set_dbg_flags +198 cdecl ldap_set_dbg_flags(long) 199 stub ldap_set_dbg_routine 200 cdecl ldap_memfree(ptr) ldap_memfreeA 201 cdecl ldap_startup(ptr ptr)