SHAutoComplete stub

Rob Crittenden <[email protected]> Tue, 14 Mar 2006 09:47:25 -0500
Newsgroups gmane.comp.emulators.winex.devel
Message-ID <[email protected]>
This is a multi-part message in MIME format.
--------------030507050306020507060909
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

Here is a patch that adds a stub for shlwapi.SHAutoComplete. This is 
required for the basic Beta Auto Assault installer to start. The 
installer is available at ftp://ftp.autoassault.com/client/ You want the 
47K one. I don't know how long this will be here, it may disappear after 
the beta period (3/21).

rob

--------------030507050306020507060909
Content-Type: text/x-diff;
 name="SHAutoComplete.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="SHAutoComplete.diff"

Index: url.c
===================================================================
RCS file: /cvsroot/winex/dlls/shlwapi/url.c,v
retrieving revision 1.4
diff -u -r1.4 url.c
--- url.c	1 Sep 2004 07:55:13 -0000	1.4
+++ url.c	14 Mar 2006 13:40:22 -0000
@@ -1717,3 +1717,12 @@
     }
     return ret;
 }
+
+/*************************************************************************
+ *      SHAutoComplete	[SHLWAPI.@]
+ */
+HRESULT WINAPI SHAutoComplete(HWND hwndEdit, DWORD dwFlags)
+{
+  FIXME("stub %08x %08lx\n", hwndEdit, dwFlags);
+  return S_FALSE;
+}
Index: shlwapi.spec
===================================================================
RCS file: /cvsroot/winex/dlls/shlwapi/shlwapi.spec,v
retrieving revision 1.1.1.15
diff -u -r1.1.1.15 shlwapi.spec
--- shlwapi.spec	17 Dec 2003 18:53:17 -0000	1.1.1.15
+++ shlwapi.spec	14 Mar 2006 13:40:23 -0000
@@ -717,7 +717,7 @@
 @ stub    PathUnExpandEnvStringsW
 @ stub    SHCopyKeyA
 @ stub    SHCopyKeyW
-@ stub    SHAutoComplete
+@ stdcall SHAutoComplete(ptr long) SHAutoComplete
 @ stub    SHCreateStreamOnFileA
 @ stub    SHCreateStreamOnFileW
 @ stub    SHCreateStreamWrapper

--------------030507050306020507060909--