mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 23:03:00 +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
|
* 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, %p ,%p):stub.\n",
|
||||||
lpszBuffer, lpszPathName, lpszShortName, lpszLongName);
|
debugstr_w(lpszPathName), debugstr_w(lpszShortName), debugstr_w(lpszLongName));
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -568,11 +568,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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue