wine/dlls/wldap32 search.c wldap32.spec

Alexandre Julliard julliard at wine.codeweavers.com
Thu Dec 1 05:58:49 CST 2005


ChangeSet ID:	21585
CVSROOT:	/opt/cvs-commit
Module name:	wine
Changes by:	julliard at winehq.org	2005/12/01 05:58:49

Modified files:
	dlls/wldap32   : search.c wldap32.spec 

Log message:
	Steven Edwards <steven at codeweavers.com>
	Add stubs for ldap_search_init_page[A/W].

Patch: http://cvs.winehq.org/patch.py?id=21585

Old revision  New revision  Changes     Path
 1.6           1.7           +24 -0      wine/dlls/wldap32/search.c
 1.30          1.31          +3 -3       wine/dlls/wldap32/wldap32.spec

Index: wine/dlls/wldap32/search.c
diff -u -p wine/dlls/wldap32/search.c:1.6 wine/dlls/wldap32/search.c:1.7
--- wine/dlls/wldap32/search.c:1.6	1 Dec 2005 11:58:49 -0000
+++ wine/dlls/wldap32/search.c	1 Dec 2005 11:58:49 -0000
@@ -495,3 +495,27 @@ exit:
 #endif
     return ret;
 }
+
+PLDAPSearch ldap_search_init_pageA( WLDAP32_LDAP *ld, const PCHAR name,
+                                    ULONG scope, const PCHAR filter, PCHAR attrs[],
+                                    ULONG attrsonly, PLDAPControlA* srvcontrols,
+                                    PLDAPControlA* clntcontrols, ULONG timelimit,
+                                    ULONG sizelimit, PLDAPSortKeyA* keys)
+{
+    FIXME( "(%p, %s, 0x%08lx, %s, %p, 0x%08lx, %p, %p, 0x%08lx, 0x%08lx, %p)\n",
+           ld, debugstr_a(name), scope, debugstr_a(filter), attrs,
+           attrsonly, srvcontrols, clntcontrols, timelimit, sizelimit, keys);
+    return NULL;
+}
+
+PLDAPSearch ldap_search_init_pageW( WLDAP32_LDAP *ld, const PWCHAR name,
+                                    ULONG scope, const PWCHAR filter, PWCHAR attrs[],
+                                    ULONG attrsonly, PLDAPControlW* srvcontrols,
+                                    PLDAPControlW* clntcontrols, ULONG timelimit,
+                                    ULONG sizelimit, PLDAPSortKeyW* keys)
+{
+    FIXME( "(%p, %s, 0x%08lx, %s, %p, 0x%08lx, %p, %p, 0x%08lx, 0x%08lx, %p)\n",
+           ld, debugstr_w(name), scope, debugstr_w(filter), attrs,
+           attrsonly, srvcontrols, clntcontrols, timelimit, sizelimit, keys);
+    return NULL;
+}
Index: wine/dlls/wldap32/wldap32.spec
diff -u -p wine/dlls/wldap32/wldap32.spec:1.30 wine/dlls/wldap32/wldap32.spec:1.31
--- wine/dlls/wldap32/wldap32.spec:1.30	1 Dec 2005 11:58:49 -0000
+++ wine/dlls/wldap32/wldap32.spec	1 Dec 2005 11:58:49 -0000
@@ -191,9 +191,9 @@
 201 cdecl ldap_startup(ptr ptr)
 202 cdecl ldap_cleanup(long)
 203 cdecl ldap_search_ext_sW(ptr wstr long wstr ptr long ptr ptr ptr long ptr)
-204 stub ldap_search_init_page
-205 stub ldap_search_init_pageA
-206 stub ldap_search_init_pageW
+204 cdecl ldap_search_init_page(ptr str long str ptr long ptr ptr ptr long ptr) ldap_search_init_pageA
+205 cdecl ldap_search_init_pageA(ptr str long str ptr long ptr ptr ptr long ptr)
+206 cdecl ldap_search_init_pageW(ptr wstr long wstr ptr long ptr ptr ptr long ptr)
 207 cdecl ldap_search_sA(ptr str long str ptr long ptr)
 208 cdecl ldap_search_sW(ptr wstr long wstr ptr long ptr)
 209 cdecl ldap_search_stA(ptr str long str ptr long ptr ptr)



More information about the wine-cvs mailing list