From 0f6af2cee0f665a61ab6381005bf9c667216061f Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Thu, 29 Apr 2004 20:01:38 +0000 Subject: [PATCH] Stub implementation for SHFindFiles. --- dlls/shell32/shell32.spec | 2 +- dlls/shell32/shellord.c | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index a56fbe265f6..591fab53feb 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -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 diff --git a/dlls/shell32/shellord.c b/dlls/shell32/shellord.c index 55b0b3f33eb..af3063fd66c 100644 --- a/dlls/shell32/shellord.c +++ b/dlls/shell32/shellord.c @@ -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; +} -- 2.11.4.GIT