Stub for SHAutoComplete.

This commit is contained in:
Maxime Bellengé 2003-03-18 19:57:00 +00:00 committed by Alexandre Julliard
parent cd4234aa49
commit 035a9e3372
2 changed files with 10 additions and 1 deletions

View File

@ -705,7 +705,7 @@
@ stub PathUnExpandEnvStringsW @ stub PathUnExpandEnvStringsW
@ stdcall SHCopyKeyA(long str long long) SHCopyKeyA @ stdcall SHCopyKeyA(long str long long) SHCopyKeyA
@ stdcall SHCopyKeyW(long wstr long long) SHCopyKeyW @ stdcall SHCopyKeyW(long wstr long long) SHCopyKeyW
@ stub SHAutoComplete @ stdcall SHAutoComplete(ptr long) SHAutoComplete
@ stdcall SHCreateStreamOnFileA(str long ptr) SHCreateStreamOnFileA @ stdcall SHCreateStreamOnFileA(str long ptr) SHCreateStreamOnFileA
@ stdcall SHCreateStreamOnFileW(wstr long ptr) SHCreateStreamOnFileW @ stdcall SHCreateStreamOnFileW(wstr long ptr) SHCreateStreamOnFileW
@ stdcall SHCreateStreamOnFileEx(wstr long long long ptr ptr) SHCreateStreamOnFileEx @ stdcall SHCreateStreamOnFileEx(wstr long long long ptr ptr) SHCreateStreamOnFileEx

View File

@ -2273,3 +2273,12 @@ HRESULT WINAPI UrlCreateFromPathW(LPCWSTR pszPath, LPWSTR pszUrl, LPDWORD pcchUr
StrCpyW(pszUrl, pszNewUrl); StrCpyW(pszUrl, pszNewUrl);
return S_OK; return S_OK;
} }
/*************************************************************************
* SHAutoComplete [SHLWAPI.@]
*/
HRESULT WINAPI SHAutoComplete(HWND hwndEdit, DWORD dwFlags)
{
FIXME("SHAutoComplete stub\n");
return S_FALSE;
}