Stub implementation for SHFindFiles.

oldstable
Mike McCormack 2004-04-29 20:01:38 +00:00 committed by Alexandre Julliard
parent 9a900aa279
commit 0f6af2cee0
2 changed files with 7 additions and 1 deletions

View File

@ -83,7 +83,7 @@
87 stdcall SHRevokeDragDrop(long)
88 stdcall SHDoDragDrop(long ptr ptr long ptr)
89 stdcall SHCloneSpecialIDList(long long long)
90 stub SHFindFiles
90 stdcall SHFindFiles(ptr ptr)
91 stub SHFindComputer
92 stdcall PathGetShortPath (ptr) PathGetShortPathAW
93 stdcall Win32CreateDirectory(wstr ptr) Win32CreateDirectoryAW

View File

@ -1526,3 +1526,9 @@ HRESULT WINAPI SHELL32_256(LPDWORD lpdw0, LPDWORD lpdw1)
return ret;
}
BOOL WINAPI SHFindFiles( LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlSaveFile )
{
FIXME("%p %p\n", pidlFolder, pidlSaveFile );
return FALSE;
}