Commit 035a9e33 authored by Maxime Bellengé's avatar Maxime Bellengé Committed by Alexandre Julliard

Stub for SHAutoComplete.

parent cd4234aa
......@@ -705,7 +705,7 @@
@ stub PathUnExpandEnvStringsW
@ stdcall SHCopyKeyA(long str long long) SHCopyKeyA
@ stdcall SHCopyKeyW(long wstr long long) SHCopyKeyW
@ stub SHAutoComplete
@ stdcall SHAutoComplete(ptr long) SHAutoComplete
@ stdcall SHCreateStreamOnFileA(str long ptr) SHCreateStreamOnFileA
@ stdcall SHCreateStreamOnFileW(wstr long ptr) SHCreateStreamOnFileW
@ stdcall SHCreateStreamOnFileEx(wstr long long long ptr ptr) SHCreateStreamOnFileEx
......
......@@ -2273,3 +2273,12 @@ HRESULT WINAPI UrlCreateFromPathW(LPCWSTR pszPath, LPWSTR pszUrl, LPDWORD pcchUr
StrCpyW(pszUrl, pszNewUrl);
return S_OK;
}
/*************************************************************************
* SHAutoComplete [SHLWAPI.@]
*/
HRESULT WINAPI SHAutoComplete(HWND hwndEdit, DWORD dwFlags)
{
FIXME("SHAutoComplete stub\n");
return S_FALSE;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment