Commit e6ab6bdc authored by Martin Fuchs's avatar Martin Fuchs Committed by Alexandre Julliard

Corrected definition of PathYetAnotherMakeUniqueName().

parent 2ca8753e
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
72 stdcall Shell_GetCachedImageIndex(ptr ptr long) Shell_GetCachedImageIndexAW 72 stdcall Shell_GetCachedImageIndex(ptr ptr long) Shell_GetCachedImageIndexAW
73 stdcall SHShellFolderView_Message(long long long) 73 stdcall SHShellFolderView_Message(long long long)
74 stdcall SHCreateStdEnumFmtEtc(long ptr ptr) 74 stdcall SHCreateStdEnumFmtEtc(long ptr ptr)
75 stdcall PathYetAnotherMakeUniqueName(ptr ptr ptr ptr) PathYetAnotherMakeUniqueNameA 75 stdcall PathYetAnotherMakeUniqueName(ptr wstr wstr wstr)
76 stub DragQueryInfo 76 stub DragQueryInfo
77 stdcall SHMapPIDLToSystemImageListIndex(ptr ptr ptr) 77 stdcall SHMapPIDLToSystemImageListIndex(ptr ptr ptr)
78 stdcall OleStrToStrN(str long wstr long) OleStrToStrNAW 78 stdcall OleStrToStrN(str long wstr long) OleStrToStrNAW
......
...@@ -515,14 +515,14 @@ BOOL WINAPI PathMakeUniqueNameAW( ...@@ -515,14 +515,14 @@ BOOL WINAPI PathMakeUniqueNameAW(
* NOTES * NOTES
* exported by ordinal * exported by ordinal
*/ */
BOOL WINAPI PathYetAnotherMakeUniqueNameA( BOOL WINAPI PathYetAnotherMakeUniqueName(
LPSTR lpszBuffer, LPWSTR lpszBuffer,
LPCSTR lpszPathName, LPCWSTR lpszPathName,
LPCSTR lpszShortName, LPCWSTR lpszShortName,
LPCSTR lpszLongName) LPCWSTR lpszLongName)
{ {
FIXME("(%p,%p, %p ,%p):stub.\n", FIXME("(%p, %s, %s ,%s):stub.\n",
lpszBuffer, lpszPathName, lpszShortName, lpszLongName); lpszBuffer, debugstr_w(lpszPathName), debugstr_w(lpszShortName), debugstr_w(lpszLongName));
return TRUE; return TRUE;
} }
......
...@@ -573,11 +573,11 @@ BOOL WINAPI PathMakeUniqueNameAW( ...@@ -573,11 +573,11 @@ BOOL WINAPI PathMakeUniqueNameAW(
LPCVOID lpszLongName, LPCVOID lpszLongName,
LPCVOID lpszPathName); LPCVOID lpszPathName);
BOOL WINAPI PathYetAnotherMakeUniqueNameA( BOOL WINAPI PathYetAnotherMakeUniqueName(
LPSTR lpszBuffer, LPWSTR lpszBuffer,
LPCSTR lpszPathName, LPCWSTR lpszPathName,
LPCSTR lpszShortName, LPCWSTR lpszShortName,
LPCSTR lpszLongName); LPCWSTR lpszLongName);
/* PathCleanupSpec return values */ /* PathCleanupSpec return values */
#define PCS_REPLACEDCHARS 0x00000001 #define PCS_REPLACEDCHARS 0x00000001
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment