Stub implementation for SHFindFiles.
This commit is contained in:
parent
9a900aa279
commit
0f6af2cee0
|
@ -83,7 +83,7 @@
|
||||||
87 stdcall SHRevokeDragDrop(long)
|
87 stdcall SHRevokeDragDrop(long)
|
||||||
88 stdcall SHDoDragDrop(long ptr ptr long ptr)
|
88 stdcall SHDoDragDrop(long ptr ptr long ptr)
|
||||||
89 stdcall SHCloneSpecialIDList(long long long)
|
89 stdcall SHCloneSpecialIDList(long long long)
|
||||||
90 stub SHFindFiles
|
90 stdcall SHFindFiles(ptr ptr)
|
||||||
91 stub SHFindComputer
|
91 stub SHFindComputer
|
||||||
92 stdcall PathGetShortPath (ptr) PathGetShortPathAW
|
92 stdcall PathGetShortPath (ptr) PathGetShortPathAW
|
||||||
93 stdcall Win32CreateDirectory(wstr ptr) Win32CreateDirectoryAW
|
93 stdcall Win32CreateDirectory(wstr ptr) Win32CreateDirectoryAW
|
||||||
|
|
|
@ -1526,3 +1526,9 @@ HRESULT WINAPI SHELL32_256(LPDWORD lpdw0, LPDWORD lpdw1)
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI SHFindFiles( LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlSaveFile )
|
||||||
|
{
|
||||||
|
FIXME("%p %p\n", pidlFolder, pidlSaveFile );
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue