corrected types and function name of PathYetAnotherMakeUniqueName()

svn path=/trunk/; revision=7470
This commit is contained in:
Martin Fuchs 2004-01-06 11:08:08 +00:00
parent 5662831f38
commit e6d3a05dff
2 changed files with 12 additions and 12 deletions

View 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, %p ,%p):stub.\n",
debugstr_w(lpszPathName), debugstr_w(lpszShortName), debugstr_w(lpszLongName));
return TRUE;
}

View file

@ -568,11 +568,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