stub implementation for SHFindFiles

Mike McCormack mike at codeweavers.com
Thu Apr 29 10:11:31 CDT 2004


ChangeLog:
* stub implementation for SHFindFiles
-------------- next part --------------
? dlls/shell32/shell32.spec.c
? dlls/shell32/shfldr_nethood.c
? dlls/shell32/tests/shell32_test.exe.spec.c
Index: dlls/shell32/shell32.spec
===================================================================
RCS file: /home/wine/wine/dlls/shell32/shell32.spec,v
retrieving revision 1.82
diff -u -r1.82 shell32.spec
--- dlls/shell32/shell32.spec	13 Apr 2004 21:15:33 -0000	1.82
+++ dlls/shell32/shell32.spec	29 Apr 2004 14:11:45 -0000
@@ -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
Index: dlls/shell32/shellord.c
===================================================================
RCS file: /home/wine/wine/dlls/shell32/shellord.c,v
retrieving revision 1.119
diff -u -r1.119 shellord.c
--- dlls/shell32/shellord.c	11 Feb 2004 06:21:45 -0000	1.119
+++ dlls/shell32/shellord.c	29 Apr 2004 14:11:45 -0000
@@ -1526,3 +1526,9 @@
 
     return ret;
 }
+
+BOOL WINAPI SHFindFiles( LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlSaveFile )
+{
+    FIXME("%p %p\n", pidlFolder, pidlSaveFile );
+    return FALSE;
+}


More information about the wine-patches mailing list