Stub for SHAutoComplete.
This commit is contained in:
parent
cd4234aa49
commit
035a9e3372
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue