- ctrl-c enabling flag is now inherited
- fixed console-related fields in RTL_USER_PROCESS_PARAMETERS
- various clean-up in kernel32.SetConsoleCtrlHandler
- only send a console event once to a process and not to all the
  process' threads

diff --git a/server/trace.c b/server/trace.c
index 5ff5213..fecc0bf 100644
--- a/server/trace.c
+++ b/server/trace.c
@@ -324,8 +324,8 @@
     fprintf( stderr, "Size=%lx,", params.Size );
     fprintf( stderr, "Flags=%lx,", params.Flags );
     fprintf( stderr, "DebugFlags=%lx,", params.DebugFlags );
-    fprintf( stderr, "Console=%p,", params.hConsole );
-    fprintf( stderr, "ProcessGroup=%lx,", params.ProcessGroup );
+    fprintf( stderr, "ConsoleHandle=%p,", params.ConsoleHandle );
+    fprintf( stderr, "ConsoleFlags=%lx,", params.ConsoleFlags );
     fprintf( stderr, "hStdInput=%p,", params.hStdInput );
     fprintf( stderr, "hStdOutput=%p,", params.hStdOutput );
     fprintf( stderr, "hStdError=%p,", params.hStdError );