mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
corrected types and function name of PathYetAnotherMakeUniqueName()
svn path=/trunk/; revision=7470
This commit is contained in:
parent
5662831f38
commit
e6d3a05dff
2 changed files with 12 additions and 12 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue