[shell32/tests/shlfolder.c] ILFindLastID has to be called by ordinal

Paul Vriens Paul.Vriens at xs4all.nl
Sun Dec 11 14:38:08 CST 2005


Hi,

we have to use pILFindLastID as ILFindLastID is not exported by name on
most platforms

Changelog
  Use pILFindLastID

Cheers,

Paul.

diff --git a/dlls/shell32/tests/shlfolder.c b/dlls/shell32/tests/shlfolder.c
index 66df199..2a09ea6 100644
--- a/dlls/shell32/tests/shlfolder.c
+++ b/dlls/shell32/tests/shlfolder.c
@@ -369,7 +369,7 @@ static void test_GetDisplayName(void)
     }

     /* WinXP stores the filenames as both ANSI and UNICODE in the pidls */
-    pidlLast = ILFindLastID(pidlTestFile);
+    pidlLast = pILFindLastID(pidlTestFile);
     todo_wine {
         ok( pidlLast->mkid.cb >= 76, "Expected pidl length of at least 76, got %d.\n",
             pidlLast->mkid.cb);




More information about the wine-patches mailing list