mirror of
https://github.com/reactos/reactos.git
synced 2025-07-28 10:22:09 +00:00
[KERNEL32]
Cut a very loong DPRINT1 into pieces, to workaround the length limitation of debug strings I get. svn path=/trunk/; revision=59849
This commit is contained in:
parent
08dac57791
commit
b96d93332b
1 changed files with 8 additions and 2 deletions
|
@ -629,8 +629,14 @@ BasePushProcessParameters(IN ULONG ParameterFlags,
|
|||
|
||||
/* Create the Parameter Block */
|
||||
ProcessParameters = NULL;
|
||||
DPRINT1("Image Name: %wZ Dll Path: %wZ current directory: %wZ, CmdLine: %wZ, Title: %wZ, Desktop: %wZ, Shell: %wZ, Runtime: %wZ\n",
|
||||
&ImageName, &DllPath, &CurrentDirectory, &CommandLine, &Title, &Desktop, &Shell, &Runtime);
|
||||
DPRINT1("ImageName: '%wZ'\n", &ImageName);
|
||||
DPRINT1("DllPath : '%wZ'\n", &DllPath);
|
||||
DPRINT1("CurDir : '%wZ'\n", &CurrentDirectory);
|
||||
DPRINT1("CmdLine : '%wZ'\n", &CommandLine);
|
||||
DPRINT1("Title : '%wZ'\n", &Title);
|
||||
DPRINT1("Desktop : '%wZ'\n", &Desktop);
|
||||
DPRINT1("Shell : '%wZ'\n", &Shell);
|
||||
DPRINT1("Runtime : '%wZ'\n", &Runtime);
|
||||
Status = RtlCreateProcessParameters(&ProcessParameters,
|
||||
&ImageName,
|
||||
&DllPath,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue