Corrected definition of PathYetAnotherMakeUniqueName().
authorMartin Fuchs <martin-fuchs@gmx.net>
Fri, 16 Jan 2004 23:04:41 +0000 (23:04 +0000)
committerAlexandre Julliard <julliard@winehq.org>
Fri, 16 Jan 2004 23:04:41 +0000 (23:04 +0000)
dlls/shell32/shell32.spec
dlls/shell32/shellpath.c
dlls/shell32/undocshell.h

index cfb47e5c265b51c270ed5ddb11d55f8a0e77e6e1..230a314d91a05a9cd9ed4fdf6f40e37dbb966d5e 100644 (file)
@@ -68,7 +68,7 @@
   72 stdcall Shell_GetCachedImageIndex(ptr ptr long) Shell_GetCachedImageIndexAW
   73 stdcall SHShellFolderView_Message(long long long)
   74 stdcall SHCreateStdEnumFmtEtc(long ptr ptr)
-  75 stdcall PathYetAnotherMakeUniqueName(ptr ptr ptr ptr) PathYetAnotherMakeUniqueNameA
+  75 stdcall PathYetAnotherMakeUniqueName(ptr wstr wstr wstr)
   76 stub DragQueryInfo
   77 stdcall SHMapPIDLToSystemImageListIndex(ptr ptr ptr)
   78 stdcall OleStrToStrN(str long wstr long) OleStrToStrNAW
index 66d4829be0ffcc4e0ae6a24b10a8f563e1a56560..a0516633ca65af5ea894099d8d81a4751097a84f 100644 (file)
@@ -515,14 +515,14 @@ BOOL WINAPI PathMakeUniqueNameAW(
  * NOTES
  *     exported by ordinal
  */
-BOOL WINAPI PathYetAnotherMakeUniqueNameA(
-       LPSTR lpszBuffer,
-       LPCSTR lpszPathName,
-       LPCSTR lpszShortName,
-       LPCSTR lpszLongName)
+BOOL WINAPI PathYetAnotherMakeUniqueName(
+       LPWSTR lpszBuffer,
+       LPCWSTR lpszPathName,
+       LPCWSTR lpszShortName,
+       LPCWSTR lpszLongName)
 {
-    FIXME("(%p,%p, %p ,%p):stub.\n",
-     lpszBuffer, lpszPathName, lpszShortName, lpszLongName);
+    FIXME("(%p, %s, %s ,%s):stub.\n",
+          lpszBuffer, debugstr_w(lpszPathName), debugstr_w(lpszShortName), debugstr_w(lpszLongName));
     return TRUE;
 }
 
index b38ad83fda06e0a6057d9b017c75fa68f08ff66e..d1af69715f9974f9829e0e15919a40c06b463872 100644 (file)
@@ -573,11 +573,11 @@ BOOL WINAPI PathMakeUniqueNameAW(
        LPCVOID lpszLongName,
        LPCVOID lpszPathName);
 
-BOOL WINAPI PathYetAnotherMakeUniqueNameA(
-       LPSTR lpszBuffer,
-       LPCSTR lpszPathName,
-       LPCSTR lpszShortName,
-       LPCSTR lpszLongName);
+BOOL WINAPI PathYetAnotherMakeUniqueName(
+       LPWSTR lpszBuffer,
+       LPCWSTR lpszPathName,
+       LPCWSTR lpszShortName,
+       LPCWSTR lpszLongName);
 
 /* PathCleanupSpec return values */
 #define PCS_REPLACEDCHARS  0x00000001