mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
merged back commited WINE patches: \n for TRACE messages
svn path=/trunk/; revision=7897
This commit is contained in:
parent
d276fcc1d3
commit
b4446c11bb
2 changed files with 6 additions and 6 deletions
|
@ -445,7 +445,7 @@ static DWORD SHNotifyMoveFileW(LPCWSTR src, LPCWSTR dest, BOOL bRename)
|
|||
dwAttr = GetFileAttributesW(dest);
|
||||
if (dwAttr != -1)
|
||||
{
|
||||
FIXME("Rename on move to existing file not implemented!");
|
||||
FIXME("Rename on move to existing file not implemented!\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -484,7 +484,7 @@ static DWORD SHNotifyCopyFileW(LPCWSTR src, LPCWSTR dest, BOOL bRename)
|
|||
DWORD dwAttr = GetFileAttributesW(dest);
|
||||
if (dwAttr != -1)
|
||||
{
|
||||
FIXME("Rename on copy to existing file not implemented!");
|
||||
FIXME("Rename on copy to existing file not implemented!\n");
|
||||
}
|
||||
}
|
||||
if (ret)
|
||||
|
@ -572,7 +572,7 @@ DWORD WINAPI SHCreateDirectoryExW(HWND hWnd, LPCWSTR path, LPSECURITY_ATTRIBUTES
|
|||
/* handling network file names?
|
||||
lstrcpynW(pathName, path, MAX_PATH);
|
||||
lpStr = PathAddBackslashW(pathName);*/
|
||||
FIXME("Semi-stub, non zero hWnd should be used somehow?");
|
||||
FIXME("Semi-stub, non zero hWnd should be used somehow?\n");
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
|
|
|
@ -69,7 +69,7 @@ HRESULT WINAPI IFileSystemBindData_Constructor(const WIN32_FIND_DATAW *pfd, LPBC
|
|||
IFileSystemBindDataImpl *sb;
|
||||
HRESULT ret = E_OUTOFMEMORY;
|
||||
|
||||
TRACE("%p, %p", pfd, ppV);
|
||||
TRACE("%p, %p\n", pfd, ppV);
|
||||
|
||||
if (!ppV)
|
||||
return E_INVALIDARG;
|
||||
|
@ -108,7 +108,7 @@ HRESULT WINAPI FileSystemBindData_GetFindData(LPBC pbc, WIN32_FIND_DATAW *pfd)
|
|||
IFileSystemBindData *pfsbd = NULL;
|
||||
HRESULT ret;
|
||||
|
||||
TRACE("%p, %p", pbc, pfd);
|
||||
TRACE("%p, %p\n", pbc, pfd);
|
||||
|
||||
if (!pfd)
|
||||
return E_INVALIDARG;
|
||||
|
@ -133,7 +133,7 @@ HRESULT WINAPI FileSystemBindData_SetFindData(LPBC pbc, const WIN32_FIND_DATAW *
|
|||
IFileSystemBindData *pfsbd = NULL;
|
||||
HRESULT ret;
|
||||
|
||||
TRACE("%p, %p", pbc, pfd);
|
||||
TRACE("%p, %p\n", pbc, pfd);
|
||||
|
||||
ret = IBindCtx_GetObjectParam(pbc, wFileSystemBindData, &pUnk);
|
||||
if (SUCCEEDED(ret))
|
||||
|
|
Loading…
Reference in a new issue