Author: hbelusca
Date: Fri Sep 20 22:12:08 2013
New Revision: 60250
URL:
http://svn.reactos.org/svn/reactos?rev=60250&view=rev
Log:
[KERNEL32]: Reenable two dprints to be able to know how programs are launched with which
parameters and so on...
Modified:
trunk/reactos/dll/win32/kernel32/client/proc.c
Modified: trunk/reactos/dll/win32/kernel32/client/proc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/kernel32/client/…
==============================================================================
--- trunk/reactos/dll/win32/kernel32/client/proc.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/kernel32/client/proc.c [iso-8859-1] Fri Sep 20 22:12:08 2013
@@ -629,10 +629,10 @@
/* Create the Parameter Block */
ProcessParameters = NULL;
- DPRINT("ImageName: '%wZ'\n", &ImageName);
+ DPRINT1("ImageName: '%wZ'\n", &ImageName);
DPRINT("DllPath : '%wZ'\n", &DllPath);
DPRINT("CurDir : '%wZ'\n", &CurrentDirectory);
- DPRINT("CmdLine : '%wZ'\n", &CommandLine);
+ DPRINT1("CmdLine : '%wZ'\n", &CommandLine);
DPRINT("Title : '%wZ'\n", &Title);
DPRINT("Desktop : '%wZ'\n", &Desktop);
DPRINT("Shell : '%wZ'\n", &Shell);