Hans Leidekker : kernel32: Add a trace to ReplaceFileW.

Alexandre Julliard julliard at winehq.org
Fri Jul 29 12:37:03 CDT 2011


Module: wine
Branch: master
Commit: c41a1a29b538127ce66f7fdbdb818b613b767f27
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c41a1a29b538127ce66f7fdbdb818b613b767f27

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Fri Jul 29 13:26:24 2011 +0200

kernel32: Add a trace to ReplaceFileW.

---

 dlls/kernel32/file.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/dlls/kernel32/file.c b/dlls/kernel32/file.c
index 94d795e..79cfc97 100644
--- a/dlls/kernel32/file.c
+++ b/dlls/kernel32/file.c
@@ -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);
 




More information about the wine-cvs mailing list