mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 20:06:40 +00:00
[SHELL32] Make SHFindFiles open the search results folder
This commit is contained in:
parent
4d097cf8b4
commit
e7e551afda
1 changed files with 8 additions and 2 deletions
|
@ -1826,8 +1826,14 @@ HRESULT WINAPI SHCreateStdEnumFmtEtc(
|
||||||
*/
|
*/
|
||||||
BOOL WINAPI SHFindFiles( LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlSaveFile )
|
BOOL WINAPI SHFindFiles( LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlSaveFile )
|
||||||
{
|
{
|
||||||
FIXME("%p %p\n", pidlFolder, pidlSaveFile );
|
FIXME("params ignored: %p %p\n", pidlFolder, pidlSaveFile);
|
||||||
return FALSE;
|
if (SHRestricted(REST_NOFIND))
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
/* Open the search results folder */
|
||||||
|
/* FIXME: CSearchBar should be opened as well */
|
||||||
|
return ShellExecuteW(NULL, NULL, L"explorer.exe", L"::{E17D4FC0-5564-11D1-83F2-00A0C90DC849}", NULL, SW_SHOWNORMAL) > (HINSTANCE)32;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*************************************************************************
|
/*************************************************************************
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue