Commit c41a1a29 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

kernel32: Add a trace to ReplaceFileW.

parent 87487c14
......@@ -1527,6 +1527,10 @@ BOOL WINAPI ReplaceFileW(LPCWSTR lpReplacedFileName, LPCWSTR lpReplacementFileNa
IO_STATUS_BLOCK io;
OBJECT_ATTRIBUTES attr;
TRACE("%s %s %s 0x%08x %p %p\n", debugstr_w(lpReplacedFileName),
debugstr_w(lpReplacementFileName), debugstr_w(lpBackupFileName),
dwReplaceFlags, lpExclude, lpReserved);
if (dwReplaceFlags)
FIXME("Ignoring flags %x\n", dwReplaceFlags);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment