Corrected definition of PathYetAnotherMakeUniqueName().
This commit is contained in:
parent
2ca8753e0e
commit
e6ab6bdcd7
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue