CVS: winex/dlls/dbghelp dbghelp.c,1.7,1.8

[email protected] 30 Aug 2007 14:20:08 -0000
Newsgroups gmane.comp.emulators.winex.cvs
Message-ID <[email protected]>
Subject: winex/dlls/dbghelp dbghelp.c,1.7,1.8Update of /var/lib/cvsd/cvsroot/winex/dlls/dbghelp
In directory agravaine:/tmp/cvs-serv19845/dlls/dbghelp

Modified Files:
	dbghelp.c 
Log Message:
added some trace markers to the PDB loader
#2034

- added a couple trace lines to the PDB loader to make it easier to spot when loading starts and finishes


Index: dbghelp.c
===================================================================
RCS file: /var/lib/cvsd/cvsroot/winex/dlls/dbghelp/dbghelp.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- dbghelp.c	30 Aug 2007 14:17:01 -0000	1.7
+++ dbghelp.c	30 Aug 2007 14:20:06 -0000	1.8
@@ -276,6 +276,7 @@
 {
     struct process*     pcs;
 
+    TRACE("******************************************************************************************\n");
     TRACE("(hProcess = 0x%08x, userSearchPath = '%s', fInvadeProcess = %s)\n", hProcess, debugstr_w(UserSearchPath), fInvadeProcess ? "TRUE" : "FALSE");
 
     if (process_find_by_handle(hProcess)){
@@ -361,6 +362,7 @@
     }
 
     TRACE("done!\n");
+    TRACE("******************************************************************************************\n");
     return TRUE;
 }