- implemented Get/SetThreadLocale
[wine] / scheduler / process.c
1 /*
2  * Win32 processes
3  *
4  * Copyright 1996, 1998 Alexandre Julliard
5  */
6
7 #include <assert.h>
8 #include <ctype.h>
9 #include <errno.h>
10 #include <fcntl.h>
11 #include <stdlib.h>
12 #include <stdio.h>
13 #include <string.h>
14 #include <unistd.h>
15 #include "wine/winbase16.h"
16 #include "wine/exception.h"
17 #include "process.h"
18 #include "main.h"
19 #include "module.h"
20 #include "neexe.h"
21 #include "file.h"
22 #include "global.h"
23 #include "heap.h"
24 #include "task.h"
25 #include "ldt.h"
26 #include "syslevel.h"
27 #include "thread.h"
28 #include "winerror.h"
29 #include "pe_image.h"
30 #include "server.h"
31 #include "options.h"
32 #include "callback.h"
33 #include "debugtools.h"
34
35 DEFAULT_DEBUG_CHANNEL(process);
36 DECLARE_DEBUG_CHANNEL(relay);
37 DECLARE_DEBUG_CHANNEL(win32);
38
39
40 static ENVDB initial_envdb;
41 static STARTUPINFOA initial_startup;
42 static char **main_exe_argv;
43 static char *main_exe_name;
44 static HFILE main_exe_file = -1;
45
46
47 /***********************************************************************
48  *           PROCESS_IdToPDB
49  *
50  * Convert a process id to a PDB, making sure it is valid.
51  */
52 PDB *PROCESS_IdToPDB( DWORD pid )
53 {
54     if (!pid || pid == GetCurrentProcessId()) return PROCESS_Current();
55     return NULL;
56 }
57
58
59 /***********************************************************************
60  *           PROCESS_CallUserSignalProc
61  *
62  * FIXME:  Some of the signals aren't sent correctly!
63  *
64  * The exact meaning of the USER signals is undocumented, but this 
65  * should cover the basic idea:
66  *
67  * USIG_DLL_UNLOAD_WIN16
68  *     This is sent when a 16-bit module is unloaded.
69  *
70  * USIG_DLL_UNLOAD_WIN32
71  *     This is sent when a 32-bit module is unloaded.
72  *
73  * USIG_DLL_UNLOAD_ORPHANS
74  *     This is sent after the last Win3.1 module is unloaded,
75  *     to allow removal of orphaned menus.
76  *
77  * USIG_FAULT_DIALOG_PUSH
78  * USIG_FAULT_DIALOG_POP
79  *     These are called to allow USER to prepare for displaying a
80  *     fault dialog, even though the fault might have happened while
81  *     inside a USER critical section.
82  *
83  * USIG_THREAD_INIT
84  *     This is called from the context of a new thread, as soon as it
85  *     has started to run.
86  *
87  * USIG_THREAD_EXIT
88  *     This is called, still in its context, just before a thread is
89  *     about to terminate.
90  *
91  * USIG_PROCESS_CREATE
92  *     This is called, in the parent process context, after a new process
93  *     has been created.
94  *
95  * USIG_PROCESS_INIT
96  *     This is called in the new process context, just after the main thread
97  *     has started execution (after the main thread's USIG_THREAD_INIT has
98  *     been sent).
99  *
100  * USIG_PROCESS_LOADED
101  *     This is called after the executable file has been loaded into the
102  *     new process context.
103  *
104  * USIG_PROCESS_RUNNING
105  *     This is called immediately before the main entry point is called.
106  *
107  * USIG_PROCESS_EXIT
108  *     This is called in the context of a process that is about to
109  *     terminate (but before the last thread's USIG_THREAD_EXIT has
110  *     been sent).
111  *
112  * USIG_PROCESS_DESTROY
113  *     This is called after a process has terminated.
114  *
115  *
116  * The meaning of the dwFlags bits is as follows:
117  *
118  * USIG_FLAGS_WIN32
119  *     Current process is 32-bit.
120  *
121  * USIG_FLAGS_GUI
122  *     Current process is a (Win32) GUI process.
123  *
124  * USIG_FLAGS_FEEDBACK 
125  *     Current process needs 'feedback' (determined from the STARTUPINFO
126  *     flags STARTF_FORCEONFEEDBACK / STARTF_FORCEOFFFEEDBACK).
127  *
128  * USIG_FLAGS_FAULT
129  *     The signal is being sent due to a fault.
130  */
131 void PROCESS_CallUserSignalProc( UINT uCode, HMODULE hModule )
132 {
133     DWORD flags = PROCESS_Current()->flags;
134     DWORD startup_flags = PROCESS_Current()->env_db->startup_info->dwFlags;
135     DWORD dwFlags = 0;
136
137     /* Determine dwFlags */
138
139     if ( !(flags & PDB32_WIN16_PROC) ) dwFlags |= USIG_FLAGS_WIN32;
140
141     if ( !(flags & PDB32_CONSOLE_PROC) ) dwFlags |= USIG_FLAGS_GUI;
142
143     if ( dwFlags & USIG_FLAGS_GUI )
144     {
145         /* Feedback defaults to ON */
146         if ( !(startup_flags & STARTF_FORCEOFFFEEDBACK) )
147             dwFlags |= USIG_FLAGS_FEEDBACK;
148     }
149     else
150     {
151         /* Feedback defaults to OFF */
152         if (startup_flags & STARTF_FORCEONFEEDBACK)
153             dwFlags |= USIG_FLAGS_FEEDBACK;
154     }
155
156     /* Convert module handle to 16-bit */
157
158     if ( HIWORD( hModule ) )
159         hModule = MapHModuleLS( hModule );
160
161     /* Call USER signal proc */
162
163     if ( Callout.UserSignalProc )
164     {
165         if ( uCode == USIG_THREAD_INIT || uCode == USIG_THREAD_EXIT )
166             Callout.UserSignalProc( uCode, GetCurrentThreadId(), dwFlags, hModule );
167         else
168             Callout.UserSignalProc( uCode, GetCurrentProcessId(), dwFlags, hModule );
169     }
170 }
171
172
173 /***********************************************************************
174  *           PROCESS_Init
175  */
176 BOOL PROCESS_Init(void)
177 {
178     struct init_process_request *req;
179     PDB *pdb = PROCESS_Current();
180
181     /* Fill the initial process structure */
182     pdb->exit_code              = STILL_ACTIVE;
183     pdb->threads                = 1;
184     pdb->running_threads        = 1;
185     pdb->ring0_threads          = 1;
186     pdb->env_db                 = &initial_envdb;
187     pdb->group                  = pdb;
188     pdb->priority               = 8;  /* Normal */
189     pdb->winver                 = 0xffff; /* to be determined */
190     initial_envdb.startup_info  = &initial_startup;
191
192     /* Setup the server connection */
193     NtCurrentTeb()->socket = CLIENT_InitServer();
194     if (CLIENT_InitThread()) return FALSE;
195
196     /* Retrieve startup info from the server */
197     req = get_req_buffer();
198     req->ldt_copy  = ldt_copy;
199     req->ldt_flags = ldt_flags_copy;
200     req->ppid      = getppid();
201     if (server_call( REQ_INIT_PROCESS )) return FALSE;
202     main_exe_file               = req->exe_file;
203     if (req->filename[0]) main_exe_name = strdup( req->filename );
204     initial_startup.dwFlags     = req->start_flags;
205     initial_startup.wShowWindow = req->cmd_show;
206     initial_envdb.hStdin   = initial_startup.hStdInput  = req->hstdin;
207     initial_envdb.hStdout  = initial_startup.hStdOutput = req->hstdout;
208     initial_envdb.hStderr  = initial_startup.hStdError  = req->hstderr;
209
210     /* Remember TEB selector of initial process for emergency use */
211     SYSLEVEL_EmergencyTeb = NtCurrentTeb()->teb_sel;
212
213     /* Create the system and process heaps */
214     if (!HEAP_CreateSystemHeap()) return FALSE;
215     pdb->heap = HeapCreate( HEAP_GROWABLE, 0, 0 );
216
217     /* Copy the parent environment */
218     if (!ENV_BuildEnvironment()) return FALSE;
219
220     /* Create the SEGPTR heap */
221     if (!(SegptrHeap = HeapCreate( HEAP_WINE_SEGPTR, 0, 0 ))) return FALSE;
222
223     /* Initialize the critical sections */
224     InitializeCriticalSection( &pdb->crit_section );
225     InitializeCriticalSection( &initial_envdb.section );
226
227     /* Initialize syslevel handling */
228     SYSLEVEL_Init();
229
230     return TRUE;
231 }
232
233
234 /***********************************************************************
235  *           load_system_dlls
236  *
237  * Load system DLLs into the initial process (and initialize them)
238  */
239 static int load_system_dlls(void)
240 {
241     char driver[MAX_PATH];
242
243     PROFILE_GetWineIniString( "Wine", "GraphicsDriver", "x11drv", driver, sizeof(driver) );
244     if (!LoadLibraryA( driver ))
245     {
246         MESSAGE( "Could not load graphics driver '%s'\n", driver );
247         return 0;
248     }
249
250     if (!LoadLibraryA("USER32.DLL")) return 0;
251
252     /* Get pointers to USER routines called by KERNEL */
253     THUNK_InitCallout();
254
255     /* Call FinalUserInit routine */
256     Callout.FinalUserInit16();
257
258     /* Note: The USIG_PROCESS_CREATE signal is supposed to be sent in the
259      *       context of the parent process.  Actually, the USER signal proc
260      *       doesn't really care about that, but it *does* require that the
261      *       startup parameters are correctly set up, so that GetProcessDword
262      *       works.  Furthermore, before calling the USER signal proc the 
263      *       16-bit stack must be set up, which it is only after TASK_Create
264      *       in the case of a 16-bit process. Thus, we send the signal here.
265      */
266     PROCESS_CallUserSignalProc( USIG_PROCESS_CREATE, 0 );
267     PROCESS_CallUserSignalProc( USIG_THREAD_INIT, 0 );
268     PROCESS_CallUserSignalProc( USIG_PROCESS_INIT, 0 );
269     PROCESS_CallUserSignalProc( USIG_PROCESS_LOADED, 0 );
270
271     return 1;
272 }
273
274
275 /***********************************************************************
276  *           build_command_line
277  *
278  * Build the command-line of a process from the argv array.
279  */
280 static inline char *build_command_line( char **argv )
281 {
282     int len, quote;
283     char *cmdline, *p, **arg;
284
285     for (arg = argv, len = 0; *arg; arg++) len += strlen(*arg) + 1;
286     if ((quote = (strchr( argv[0], ' ' ) != NULL))) len += 2;
287     if (!(p = cmdline = HeapAlloc( GetProcessHeap(), 0, len ))) return NULL;
288     arg = argv;
289     if (quote)
290     {
291         *p++ = '\"';
292         strcpy( p, *arg );
293         p += strlen(p);
294         *p++ = '\"';
295         *p++ = ' ';
296         arg++;
297     }
298     while (*arg)
299     {
300         strcpy( p, *arg );
301         p += strlen(p);
302         *p++ = ' ';
303         arg++;
304     }
305     if (p > cmdline) p--;  /* remove last space */
306     *p = 0;
307     return cmdline;
308 }
309
310
311 /***********************************************************************
312  *           start_process
313  *
314  * Startup routine of a new process. Runs on the new process stack.
315  */
316 static void start_process(void)
317 {
318     struct init_process_done_request *req = get_req_buffer();
319     int debugged, console_app;
320     HMODULE16 hModule16;
321     UINT cmdShow = SW_SHOWNORMAL;
322     LPTHREAD_START_ROUTINE entry;
323     PDB *pdb = PROCESS_Current();
324     HMODULE module = pdb->exe_modref->module;
325
326     /* Increment EXE refcount */
327     pdb->exe_modref->refCount++;
328
329     /* build command line */
330     if (!(pdb->env_db->cmd_line = build_command_line( main_exe_argv ))) goto error;
331
332     /* Retrieve entry point address */
333     entry = (LPTHREAD_START_ROUTINE)RVA_PTR( module, OptionalHeader.AddressOfEntryPoint );
334     console_app = (PE_HEADER(module)->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_CUI);
335
336     if (console_app) pdb->flags |= PDB32_CONSOLE_PROC;
337
338     /* Signal the parent process to continue */
339     req->module = (void *)module;
340     req->entry  = entry;
341     req->name   = &pdb->exe_modref->filename;
342     req->gui    = !console_app;
343     server_call( REQ_INIT_PROCESS_DONE );
344     debugged = req->debugged;
345
346     /* Install signal handlers; this cannot be done before, since we cannot
347      * send exceptions to the debugger before the create process event that
348      * is sent by REQ_INIT_PROCESS_DONE */
349     if (!SIGNAL_Init()) goto error;
350
351     /* Load KERNEL (necessary for TASK_Create) */
352     if (!LoadLibraryA( "KERNEL32" )) goto error;
353
354     /* Create 16-bit dummy module */
355     if ((hModule16 = MODULE_CreateDummyModule( pdb->exe_modref->filename, module )) < 32)
356         ExitProcess( hModule16 );
357
358     if (pdb->env_db->startup_info->dwFlags & STARTF_USESHOWWINDOW)
359         cmdShow = pdb->env_db->startup_info->wShowWindow;
360     if (!TASK_Create( (NE_MODULE *)GlobalLock16( hModule16 ), cmdShow,
361                       NtCurrentTeb(), NULL, 0 ))
362         goto error;
363
364     /* Load the system dlls */
365     if (!load_system_dlls()) goto error;
366
367     EnterCriticalSection( &pdb->crit_section );
368     PE_InitTls();
369     MODULE_DllProcessAttach( pdb->exe_modref, (LPVOID)1 );
370     LeaveCriticalSection( &pdb->crit_section );
371
372     /* Call UserSignalProc ( USIG_PROCESS_RUNNING ... ) only for non-GUI win32 apps */
373     if (console_app) PROCESS_CallUserSignalProc( USIG_PROCESS_RUNNING, 0 );
374
375     TRACE_(relay)( "Starting Win32 process (entryproc=%p)\n", entry );
376     if (debugged) DbgBreakPoint();
377     /* FIXME: should use _PEB as parameter for NT 3.5 programs !
378      * Dunno about other OSs */
379     ExitThread( entry(NULL) );
380
381  error:
382     ExitProcess( GetLastError() );
383 }
384
385
386 /***********************************************************************
387  *           PROCESS_Start
388  *
389  * Startup routine of a new Win32 process once the main module has been loaded.
390  * The filename is free'd by this routine.
391  */
392 static void PROCESS_Start( HMODULE main_module, LPSTR filename ) WINE_NORETURN;
393 static void PROCESS_Start( HMODULE main_module, LPSTR filename )
394 {
395     if (!filename)
396     {
397         /* if no explicit filename, use argv[0] */
398         if (!(filename = malloc( MAX_PATH ))) ExitProcess(1);
399         if (!GetFullPathNameA( argv0, MAX_PATH, filename, NULL ))
400             lstrcpynA( filename, argv0, MAX_PATH );
401     }
402
403     /* load main module */
404     if (PE_HEADER(main_module)->FileHeader.Characteristics & IMAGE_FILE_DLL)
405         ExitProcess( ERROR_BAD_EXE_FORMAT );
406
407     /* Create 32-bit MODREF */
408     if (!PE_CreateModule( main_module, filename, 0, FALSE ))
409         goto error;
410     free( filename );
411
412     /* allocate main thread stack */
413     if (!THREAD_InitStack( NtCurrentTeb(),
414                            PE_HEADER(main_module)->OptionalHeader.SizeOfStackReserve, TRUE ))
415         goto error;
416
417     /* switch to the new stack */
418     SYSDEPS_SwitchToThreadStack( start_process );
419
420  error:
421     ExitProcess( GetLastError() );
422 }
423
424
425 /***********************************************************************
426  *           PROCESS_InitWine
427  *
428  * Wine initialisation: load and start the main exe file.
429  */
430 void PROCESS_InitWine( int argc, char *argv[] )
431 {
432     DWORD type;
433
434     /* Initialize everything */
435     if (!MAIN_MainInit( argv )) exit(1);
436
437     main_exe_argv = ++argv;  /* remove argv[0] (wine itself) */
438
439     if (!main_exe_name)
440     {
441         char buffer[MAX_PATH];
442         if (!argv[0]) OPTIONS_Usage();
443
444         /* open the exe file */
445         if (!SearchPathA( NULL, argv[0], ".exe", sizeof(buffer), buffer, NULL ) &&
446             !SearchPathA( NULL, argv[0], NULL, sizeof(buffer), buffer, NULL ))
447         {
448             MESSAGE( "%s: cannot find '%s'\n", argv0, argv[0] );
449             goto error;
450         }
451         if (!(main_exe_name = strdup(buffer)))
452         {
453             MESSAGE( "%s: out of memory\n", argv0 );
454             ExitProcess(1);
455         }
456     }
457
458     if (main_exe_file == INVALID_HANDLE_VALUE)
459     {
460         if ((main_exe_file = CreateFileA( main_exe_name, GENERIC_READ, FILE_SHARE_READ,
461                                           NULL, OPEN_EXISTING, 0, -1 )) == INVALID_HANDLE_VALUE)
462         {
463             MESSAGE( "%s: cannot open '%s'\n", argv0, main_exe_name );
464             goto error;
465         }
466     }
467
468     if (!MODULE_GetBinaryType( main_exe_file, main_exe_name, &type ))
469     {
470         MESSAGE( "%s: unrecognized executable '%s'\n", argv0, main_exe_name );
471         goto error;
472     }
473
474     switch (type)
475     {
476     case SCS_32BIT_BINARY:
477         {
478             HMODULE main_module = PE_LoadImage( main_exe_file, main_exe_name );
479             if (main_module) PROCESS_Start( main_module, main_exe_name );
480         }
481         break;
482
483     case SCS_WOW_BINARY:
484         {
485             HMODULE main_module;
486             /* create 32-bit module for main exe */
487             if (!(main_module = BUILTIN32_LoadExeModule())) goto error;
488             NtCurrentTeb()->tibflags &= ~TEBF_WIN32;
489             PROCESS_Current()->flags |= PDB32_WIN16_PROC;
490             SYSLEVEL_EnterWin16Lock();
491             PROCESS_Start( main_module, NULL );
492         }
493         break;
494
495     case SCS_DOS_BINARY:
496         FIXME( "DOS binaries support is broken at the moment; feel free to fix it...\n" );
497         SetLastError( ERROR_BAD_FORMAT );
498         break;
499
500     case SCS_PIF_BINARY:
501     case SCS_POSIX_BINARY:
502     case SCS_OS216_BINARY:
503     default:
504         MESSAGE( "%s: unrecognized executable '%s'\n", argv0, main_exe_name );
505         SetLastError( ERROR_BAD_FORMAT );
506         break;
507     }
508  error:
509     ExitProcess( GetLastError() );
510 }
511
512
513 /***********************************************************************
514  *           PROCESS_InitWinelib
515  *
516  * Initialisation of a new Winelib process.
517  */
518 void PROCESS_InitWinelib( int argc, char *argv[] )
519 {
520     HMODULE main_module;
521
522     if (!MAIN_MainInit( argv )) exit(1);
523
524     /* create 32-bit module for main exe */
525     if (!(main_module = BUILTIN32_LoadExeModule())) ExitProcess( GetLastError() );
526
527     main_exe_argv = argv;
528     PROCESS_Start( main_module, NULL );
529 }
530
531
532 /***********************************************************************
533  *           build_argv
534  *
535  * Build an argv array from a command-line.
536  * The command-line is modified to insert nulls.
537  * 'reserved' is the number of args to reserve before the first one.
538  */
539 static char **build_argv( char *cmdline, int reserved )
540 {
541     char **argv;
542     int count = reserved + 1;
543     char *p = cmdline;
544
545     /* if first word is quoted store it as a single arg */
546     if (*cmdline == '\"')
547     {
548         if ((p = strchr( cmdline + 1, '\"' )))
549         {
550             p++;
551             count++;
552         }
553         else p = cmdline;
554     }
555     while (*p)
556     {
557         while (*p && isspace(*p)) p++;
558         if (!*p) break;
559         count++;
560         while (*p && !isspace(*p)) p++;
561     }
562
563     if ((argv = malloc( count * sizeof(*argv) )))
564     {
565         char **argvptr = argv + reserved;
566         p = cmdline;
567         if (*cmdline == '\"')
568         {
569             if ((p = strchr( cmdline + 1, '\"' )))
570             {
571                 *argvptr++ = cmdline + 1;
572                 *p++ = 0;
573             }
574             else p = cmdline;
575         }
576         while (*p)
577         {
578             while (*p && isspace(*p)) *p++ = 0;
579             if (!*p) break;
580             *argvptr++ = p;
581             while (*p && !isspace(*p)) p++;
582         }
583         *argvptr = 0;
584     }
585     return argv;
586 }
587
588
589 /***********************************************************************
590  *           build_envp
591  *
592  * Build the environment of a new child process.
593  */
594 static char **build_envp( const char *env )
595 {
596     const char *p;
597     char **envp;
598     int count;
599
600     for (p = env, count = 0; *p; count++) p += strlen(p) + 1;
601     count += 3;
602     if ((envp = malloc( count * sizeof(*envp) )))
603     {
604         extern char **environ;
605         char **envptr = envp;
606         char **unixptr = environ;
607         /* first put PATH, HOME and WINEPREFIX from the unix env */
608         for (unixptr = environ; unixptr && *unixptr; unixptr++)
609             if (!memcmp( *unixptr, "PATH=", 5 ) ||
610                 !memcmp( *unixptr, "HOME=", 5 ) ||
611                 !memcmp( *unixptr, "WINEPREFIX=", 11 )) *envptr++ = *unixptr;
612         /* now put the Windows environment strings */
613         for (p = env; *p; p += strlen(p) + 1)
614         {
615             if (memcmp( p, "PATH=", 5 ) &&
616                 memcmp( p, "HOME=", 5 ) &&
617                 memcmp( p, "WINEPREFIX=", 11 )) *envptr++ = (char *)p;
618         }
619         *envptr = 0;
620     }
621     return envp;
622 }
623
624
625 /***********************************************************************
626  *           find_wine_binary
627  *
628  * Locate the Wine binary to exec for a new Win32 process.
629  */
630 static void exec_wine_binary( char **argv, char **envp )
631 {
632     const char *path, *pos, *ptr;
633
634     /* first try bin directory */
635     argv[0] = BINDIR "/wine";
636     execve( argv[0], argv, envp );
637
638     /* now try the path of argv0 of the current binary */
639     if (!(argv[0] = malloc( strlen(argv0) + 6 ))) return;
640     if ((ptr = strrchr( argv0, '/' )))
641     {
642         memcpy( argv[0], argv0, ptr - argv0 );
643         strcpy( argv[0] + (ptr - argv0), "/wine" );
644         execve( argv[0], argv, envp );
645     }
646     free( argv[0] );
647
648     /* now search in the Unix path */
649     if ((path = getenv( "PATH" )))
650     {
651         if (!(argv[0] = malloc( strlen(path) + 6 ))) return;
652         pos = path;
653         for (;;)
654         {
655             while (*pos == ':') pos++;
656             if (!*pos) break;
657             if (!(ptr = strchr( pos, ':' ))) ptr = pos + strlen(pos);
658             memcpy( argv[0], pos, ptr - pos );
659             strcpy( argv[0] + (ptr - pos), "/wine" );
660             execve( argv[0], argv, envp );
661             pos = ptr;
662         }
663     }
664     free( argv[0] );
665
666     /* finally try the current directory */
667     argv[0] = "./wine";
668     execve( argv[0], argv, envp );
669 }
670
671
672 /***********************************************************************
673  *           fork_and_exec
674  *
675  * Fork and exec a new Unix process, checking for errors.
676  */
677 static int fork_and_exec( const char *filename, const char *cmdline, const char *env )
678 {
679     int fd[2];
680     int pid, err;
681
682     if (pipe(fd) == -1)
683     {
684         FILE_SetDosError();
685         return -1;
686     }
687     fcntl( fd[1], F_SETFD, 1 );  /* set close on exec */
688     if (!(pid = fork()))  /* child */
689     {
690         char **argv = build_argv( (char *)cmdline, filename ? 0 : 2 );
691         char **envp = build_envp( env );
692         close( fd[0] );
693         if (argv && envp)
694         {
695             if (!filename)
696             {
697                 argv[1] = "--";
698                 exec_wine_binary( argv, envp );
699             }
700             else execve( filename, argv, envp );
701         }
702         err = errno;
703         write( fd[1], &err, sizeof(err) );
704         _exit(1);
705     }
706     close( fd[1] );
707     if ((pid != -1) && (read( fd[0], &err, sizeof(err) ) > 0))  /* exec failed */
708     {
709         errno = err;
710         pid = -1;
711     }
712     if (pid == -1) FILE_SetDosError();
713     close( fd[0] );
714     return pid;
715 }
716
717
718 /***********************************************************************
719  *           PROCESS_Create
720  *
721  * Create a new process. If hFile is a valid handle we have an exe
722  * file, and we exec a new copy of wine to load it; otherwise we
723  * simply exec the specified filename as a Unix process.
724  */
725 BOOL PROCESS_Create( HFILE hFile, LPCSTR filename, LPCSTR cmd_line, LPCSTR env, 
726                      LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
727                      BOOL inherit, DWORD flags, LPSTARTUPINFOA startup,
728                      LPPROCESS_INFORMATION info )
729 {
730     int pid;
731     const char *unixfilename = NULL;
732     DOS_FULL_NAME full_name;
733     HANDLE load_done_evt = -1;
734     struct new_process_request *req = get_req_buffer();
735     struct wait_process_request *wait_req = get_req_buffer();
736
737     info->hThread = info->hProcess = INVALID_HANDLE_VALUE;
738     
739     /* create the process on the server side */
740
741     req->inherit_all  = inherit;
742     req->create_flags = flags;
743     req->start_flags  = startup->dwFlags;
744     req->exe_file     = hFile;
745     if (startup->dwFlags & STARTF_USESTDHANDLES)
746     {
747         req->hstdin  = startup->hStdInput;
748         req->hstdout = startup->hStdOutput;
749         req->hstderr = startup->hStdError;
750     }
751     else
752     {
753         req->hstdin  = GetStdHandle( STD_INPUT_HANDLE );
754         req->hstdout = GetStdHandle( STD_OUTPUT_HANDLE );
755         req->hstderr = GetStdHandle( STD_ERROR_HANDLE );
756     }
757     req->cmd_show = startup->wShowWindow;
758     req->alloc_fd = 0;
759
760     if (hFile == -1)  /* unix process */
761     {
762         unixfilename = filename;
763         if (DOSFS_GetFullName( filename, TRUE, &full_name )) unixfilename = full_name.long_name;
764         req->filename[0] = 0;
765     }
766     else  /* new wine process */
767     {
768         if (!GetFullPathNameA( filename, server_remaining(req->filename), req->filename, NULL ))
769             lstrcpynA( req->filename, filename, server_remaining(req->filename) );
770     }
771     if (server_call( REQ_NEW_PROCESS )) return FALSE;
772
773     /* fork and execute */
774
775     pid = fork_and_exec( unixfilename, cmd_line, env ? env : GetEnvironmentStringsA() );
776
777     wait_req->cancel   = (pid == -1);
778     wait_req->pinherit = (psa && (psa->nLength >= sizeof(*psa)) && psa->bInheritHandle);
779     wait_req->tinherit = (tsa && (tsa->nLength >= sizeof(*tsa)) && tsa->bInheritHandle);
780     wait_req->timeout  = 2000;
781     if (server_call( REQ_WAIT_PROCESS ) || (pid == -1)) goto error;
782     info->dwProcessId = (DWORD)wait_req->pid;
783     info->dwThreadId  = (DWORD)wait_req->tid;
784     info->hProcess    = wait_req->phandle;
785     info->hThread     = wait_req->thandle;
786     load_done_evt     = wait_req->event;
787
788     /* Wait until process is initialized (or initialization failed) */
789     if (load_done_evt != -1)
790     {
791         DWORD res;
792         HANDLE handles[2];
793
794         handles[0] = info->hProcess;
795         handles[1] = load_done_evt;
796         res = WaitForMultipleObjects( 2, handles, FALSE, INFINITE );
797         CloseHandle( load_done_evt );
798         if (res == STATUS_WAIT_0)  /* the process died */
799         {
800             DWORD exitcode;
801             if (GetExitCodeProcess( info->hProcess, &exitcode )) SetLastError( exitcode );
802             CloseHandle( info->hThread );
803             CloseHandle( info->hProcess );
804             return FALSE;
805         }
806     }
807     return TRUE;
808
809 error:
810     if (load_done_evt != -1) CloseHandle( load_done_evt );
811     if (info->hThread != INVALID_HANDLE_VALUE) CloseHandle( info->hThread );
812     if (info->hProcess != INVALID_HANDLE_VALUE) CloseHandle( info->hProcess );
813     return FALSE;
814 }
815
816
817 /***********************************************************************
818  *           ExitProcess   (KERNEL32.100)
819  */
820 void WINAPI ExitProcess( DWORD status )
821 {
822     struct terminate_process_request *req = get_req_buffer();
823
824     MODULE_DllProcessDetach( TRUE, (LPVOID)1 );
825     /* send the exit code to the server */
826     req->handle    = GetCurrentProcess();
827     req->exit_code = status;
828     server_call( REQ_TERMINATE_PROCESS );
829     exit( status );
830 }
831
832 /***********************************************************************
833  *           ExitProcess16   (KERNEL.466)
834  */
835 void WINAPI ExitProcess16( WORD status )
836 {
837     SYSLEVEL_ReleaseWin16Lock();
838     ExitProcess( status );
839 }
840
841 /******************************************************************************
842  *           TerminateProcess   (KERNEL32.684)
843  */
844 BOOL WINAPI TerminateProcess( HANDLE handle, DWORD exit_code )
845 {
846     BOOL ret;
847     struct terminate_process_request *req = get_req_buffer();
848     req->handle    = handle;
849     req->exit_code = exit_code;
850     if ((ret = !server_call( REQ_TERMINATE_PROCESS )) && req->self) exit( exit_code );
851     return ret;
852 }
853
854
855 /***********************************************************************
856  *           GetProcessDword    (KERNEL32.18) (KERNEL.485)
857  * 'Of course you cannot directly access Windows internal structures'
858  */
859 DWORD WINAPI GetProcessDword( DWORD dwProcessID, INT offset )
860 {
861     PDB *process = PROCESS_IdToPDB( dwProcessID );
862     TDB *pTask;
863     DWORD x, y;
864
865     TRACE_(win32)("(%ld, %d)\n", dwProcessID, offset );
866     if ( !process )
867     {
868         ERR("%d: process %lx not accessible\n", offset, dwProcessID);
869         return 0;
870     }
871
872     switch ( offset ) 
873     {
874     case GPD_APP_COMPAT_FLAGS:
875         pTask = (TDB *)GlobalLock16( GetCurrentTask() );
876         return pTask? pTask->compat_flags : 0;
877
878     case GPD_LOAD_DONE_EVENT:
879         return process->load_done_evt;
880
881     case GPD_HINSTANCE16:
882         pTask = (TDB *)GlobalLock16( GetCurrentTask() );
883         return pTask? pTask->hInstance : 0;
884
885     case GPD_WINDOWS_VERSION:
886         pTask = (TDB *)GlobalLock16( GetCurrentTask() );
887         return pTask? pTask->version : 0;
888
889     case GPD_THDB:
890         if ( process != PROCESS_Current() ) return 0;
891         return (DWORD)NtCurrentTeb() - 0x10 /* FIXME */;
892
893     case GPD_PDB:
894         return (DWORD)process;
895
896     case GPD_STARTF_SHELLDATA: /* return stdoutput handle from startupinfo ??? */
897         return process->env_db->startup_info->hStdOutput;
898
899     case GPD_STARTF_HOTKEY: /* return stdinput handle from startupinfo ??? */
900         return process->env_db->startup_info->hStdInput;
901
902     case GPD_STARTF_SHOWWINDOW:
903         return process->env_db->startup_info->wShowWindow;
904
905     case GPD_STARTF_SIZE:
906         x = process->env_db->startup_info->dwXSize;
907         if ( x == CW_USEDEFAULT ) x = CW_USEDEFAULT16;
908         y = process->env_db->startup_info->dwYSize;
909         if ( y == CW_USEDEFAULT ) y = CW_USEDEFAULT16;
910         return MAKELONG( x, y );
911
912     case GPD_STARTF_POSITION:
913         x = process->env_db->startup_info->dwX;
914         if ( x == CW_USEDEFAULT ) x = CW_USEDEFAULT16;
915         y = process->env_db->startup_info->dwY;
916         if ( y == CW_USEDEFAULT ) y = CW_USEDEFAULT16;
917         return MAKELONG( x, y );
918
919     case GPD_STARTF_FLAGS:
920         return process->env_db->startup_info->dwFlags;
921
922     case GPD_PARENT:
923         return 0;
924
925     case GPD_FLAGS:
926         return process->flags;
927
928     case GPD_USERDATA:
929         return process->process_dword;
930
931     default:
932         ERR_(win32)("Unknown offset %d\n", offset );
933         return 0;
934     }
935 }
936
937 /***********************************************************************
938  *           SetProcessDword    (KERNEL.484)
939  * 'Of course you cannot directly access Windows internal structures'
940  */
941 void WINAPI SetProcessDword( DWORD dwProcessID, INT offset, DWORD value )
942 {
943     PDB *process = PROCESS_IdToPDB( dwProcessID );
944
945     TRACE_(win32)("(%ld, %d)\n", dwProcessID, offset );
946     if ( !process )
947     {
948         ERR("%d: process %lx not accessible\n", offset, dwProcessID);
949         return;
950     }
951
952     switch ( offset ) 
953     {
954     case GPD_APP_COMPAT_FLAGS:
955     case GPD_LOAD_DONE_EVENT:
956     case GPD_HINSTANCE16:
957     case GPD_WINDOWS_VERSION:
958     case GPD_THDB:
959     case GPD_PDB:
960     case GPD_STARTF_SHELLDATA:
961     case GPD_STARTF_HOTKEY:
962     case GPD_STARTF_SHOWWINDOW:
963     case GPD_STARTF_SIZE:
964     case GPD_STARTF_POSITION:
965     case GPD_STARTF_FLAGS:
966     case GPD_PARENT:
967     case GPD_FLAGS:
968         ERR_(win32)("Not allowed to modify offset %d\n", offset );
969         break;
970
971     case GPD_USERDATA:
972         process->process_dword = value; 
973         break;
974
975     default:
976         ERR_(win32)("Unknown offset %d\n", offset );
977         break;
978     }
979 }
980
981
982 /*********************************************************************
983  *           OpenProcess   (KERNEL32.543)
984  */
985 HANDLE WINAPI OpenProcess( DWORD access, BOOL inherit, DWORD id )
986 {
987     HANDLE ret = 0;
988     struct open_process_request *req = get_req_buffer();
989
990     req->pid     = (void *)id;
991     req->access  = access;
992     req->inherit = inherit;
993     if (!server_call( REQ_OPEN_PROCESS )) ret = req->handle;
994     return ret;
995 }                             
996
997 /*********************************************************************
998  *           MapProcessHandle   (KERNEL.483)
999  */
1000 DWORD WINAPI MapProcessHandle( HANDLE handle )
1001 {
1002     DWORD ret = 0;
1003     struct get_process_info_request *req = get_req_buffer();
1004     req->handle = handle;
1005     if (!server_call( REQ_GET_PROCESS_INFO )) ret = (DWORD)req->pid;
1006     return ret;
1007 }
1008
1009 /***********************************************************************
1010  *           SetPriorityClass   (KERNEL32.503)
1011  */
1012 BOOL WINAPI SetPriorityClass( HANDLE hprocess, DWORD priorityclass )
1013 {
1014     struct set_process_info_request *req = get_req_buffer();
1015     req->handle   = hprocess;
1016     req->priority = priorityclass;
1017     req->mask     = SET_PROCESS_INFO_PRIORITY;
1018     return !server_call( REQ_SET_PROCESS_INFO );
1019 }
1020
1021
1022 /***********************************************************************
1023  *           GetPriorityClass   (KERNEL32.250)
1024  */
1025 DWORD WINAPI GetPriorityClass(HANDLE hprocess)
1026 {
1027     DWORD ret = 0;
1028     struct get_process_info_request *req = get_req_buffer();
1029     req->handle = hprocess;
1030     if (!server_call( REQ_GET_PROCESS_INFO )) ret = req->priority;
1031     return ret;
1032 }
1033
1034
1035 /***********************************************************************
1036  *          SetProcessAffinityMask   (KERNEL32.662)
1037  */
1038 BOOL WINAPI SetProcessAffinityMask( HANDLE hProcess, DWORD affmask )
1039 {
1040     struct set_process_info_request *req = get_req_buffer();
1041     req->handle   = hProcess;
1042     req->affinity = affmask;
1043     req->mask     = SET_PROCESS_INFO_AFFINITY;
1044     return !server_call( REQ_SET_PROCESS_INFO );
1045 }
1046
1047 /**********************************************************************
1048  *          GetProcessAffinityMask    (KERNEL32.373)
1049  */
1050 BOOL WINAPI GetProcessAffinityMask( HANDLE hProcess,
1051                                       LPDWORD lpProcessAffinityMask,
1052                                       LPDWORD lpSystemAffinityMask )
1053 {
1054     BOOL ret = FALSE;
1055     struct get_process_info_request *req = get_req_buffer();
1056     req->handle = hProcess;
1057     if (!server_call( REQ_GET_PROCESS_INFO ))
1058     {
1059         if (lpProcessAffinityMask) *lpProcessAffinityMask = req->process_affinity;
1060         if (lpSystemAffinityMask) *lpSystemAffinityMask = req->system_affinity;
1061         ret = TRUE;
1062     }
1063     return ret;
1064 }
1065
1066
1067 /***********************************************************************
1068  *           GetStdHandle    (KERNEL32.276)
1069  */
1070 HANDLE WINAPI GetStdHandle( DWORD std_handle )
1071 {
1072     PDB *pdb = PROCESS_Current();
1073
1074     switch(std_handle)
1075     {
1076     case STD_INPUT_HANDLE:  return pdb->env_db->hStdin;
1077     case STD_OUTPUT_HANDLE: return pdb->env_db->hStdout;
1078     case STD_ERROR_HANDLE:  return pdb->env_db->hStderr;
1079     }
1080     SetLastError( ERROR_INVALID_PARAMETER );
1081     return INVALID_HANDLE_VALUE;
1082 }
1083
1084
1085 /***********************************************************************
1086  *           SetStdHandle    (KERNEL32.506)
1087  */
1088 BOOL WINAPI SetStdHandle( DWORD std_handle, HANDLE handle )
1089 {
1090     PDB *pdb = PROCESS_Current();
1091     /* FIXME: should we close the previous handle? */
1092     switch(std_handle)
1093     {
1094     case STD_INPUT_HANDLE:
1095         pdb->env_db->hStdin = handle;
1096         return TRUE;
1097     case STD_OUTPUT_HANDLE:
1098         pdb->env_db->hStdout = handle;
1099         return TRUE;
1100     case STD_ERROR_HANDLE:
1101         pdb->env_db->hStderr = handle;
1102         return TRUE;
1103     }
1104     SetLastError( ERROR_INVALID_PARAMETER );
1105     return FALSE;
1106 }
1107
1108 /***********************************************************************
1109  *           GetProcessVersion    (KERNEL32)
1110  */
1111 DWORD WINAPI GetProcessVersion( DWORD processid )
1112 {
1113     TDB *pTask;
1114     PDB *pdb = PROCESS_IdToPDB( processid );
1115
1116     if (!pdb) return 0;
1117     if (!(pTask = (TDB *)GlobalLock16( pdb->task ))) return 0;
1118     return (pTask->version&0xff) | (((pTask->version >>8) & 0xff)<<16);
1119 }
1120
1121 /***********************************************************************
1122  *           GetProcessFlags    (KERNEL32)
1123  */
1124 DWORD WINAPI GetProcessFlags( DWORD processid )
1125 {
1126     PDB *pdb = PROCESS_IdToPDB( processid );
1127     if (!pdb) return 0;
1128     return pdb->flags;
1129 }
1130
1131 /***********************************************************************
1132  *              SetProcessWorkingSetSize        [KERNEL32.662]
1133  * Sets the min/max working set sizes for a specified process.
1134  *
1135  * PARAMS
1136  *    hProcess [I] Handle to the process of interest
1137  *    minset   [I] Specifies minimum working set size
1138  *    maxset   [I] Specifies maximum working set size
1139  *
1140  * RETURNS  STD
1141  */
1142 BOOL WINAPI SetProcessWorkingSetSize(HANDLE hProcess,DWORD minset,
1143                                        DWORD maxset)
1144 {
1145     FIXME("(0x%08x,%ld,%ld): stub - harmless\n",hProcess,minset,maxset);
1146     if(( minset == -1) && (maxset == -1)) {
1147         /* Trim the working set to zero */
1148         /* Swap the process out of physical RAM */
1149     }
1150     return TRUE;
1151 }
1152
1153 /***********************************************************************
1154  *           GetProcessWorkingSetSize    (KERNEL32)
1155  */
1156 BOOL WINAPI GetProcessWorkingSetSize(HANDLE hProcess,LPDWORD minset,
1157                                        LPDWORD maxset)
1158 {
1159         FIXME("(0x%08x,%p,%p): stub\n",hProcess,minset,maxset);
1160         /* 32 MB working set size */
1161         if (minset) *minset = 32*1024*1024;
1162         if (maxset) *maxset = 32*1024*1024;
1163         return TRUE;
1164 }
1165
1166 /***********************************************************************
1167  *           SetProcessShutdownParameters    (KERNEL32)
1168  *
1169  * CHANGED - James Sutherland (JamesSutherland@gmx.de)
1170  * Now tracks changes made (but does not act on these changes)
1171  * NOTE: the definition for SHUTDOWN_NORETRY was done on guesswork.
1172  * It really shouldn't be here, but I'll move it when it's been checked!
1173  */
1174 #define SHUTDOWN_NORETRY 1
1175 static unsigned int shutdown_noretry = 0;
1176 static unsigned int shutdown_priority = 0x280L;
1177 BOOL WINAPI SetProcessShutdownParameters(DWORD level,DWORD flags)
1178 {
1179     if (flags & SHUTDOWN_NORETRY)
1180       shutdown_noretry = 1;
1181     else
1182       shutdown_noretry = 0;
1183     if (level > 0x100L && level < 0x3FFL)
1184       shutdown_priority = level;
1185     else
1186       {
1187         ERR("invalid priority level 0x%08lx\n", level);
1188         return FALSE;
1189       }
1190     return TRUE;
1191 }
1192
1193
1194 /***********************************************************************
1195  * GetProcessShutdownParameters                 (KERNEL32)
1196  *
1197  */
1198 BOOL WINAPI GetProcessShutdownParameters( LPDWORD lpdwLevel,
1199                                             LPDWORD lpdwFlags )
1200 {
1201   (*lpdwLevel) = shutdown_priority;
1202   (*lpdwFlags) = (shutdown_noretry * SHUTDOWN_NORETRY);
1203   return TRUE;
1204 }
1205 /***********************************************************************
1206  *           SetProcessPriorityBoost    (KERNEL32)
1207  */
1208 BOOL WINAPI SetProcessPriorityBoost(HANDLE hprocess,BOOL disableboost)
1209 {
1210     FIXME("(%d,%d): stub\n",hprocess,disableboost);
1211     /* Say we can do it. I doubt the program will notice that we don't. */
1212     return TRUE;
1213 }
1214
1215
1216 /***********************************************************************
1217  *           ReadProcessMemory                  (KERNEL32)
1218  */
1219 BOOL WINAPI ReadProcessMemory( HANDLE process, LPCVOID addr, LPVOID buffer, DWORD size,
1220                                LPDWORD bytes_read )
1221 {
1222     struct read_process_memory_request *req = get_req_buffer();
1223     unsigned int offset = (unsigned int)addr % sizeof(int);
1224     unsigned int max = server_remaining( req->data );  /* max length in one request */
1225     unsigned int pos;
1226
1227     if (bytes_read) *bytes_read = size;
1228
1229     /* first time, read total length to check for permissions */
1230     req->handle = process;
1231     req->addr   = (char *)addr - offset;
1232     req->len    = (size + offset + sizeof(int) - 1) / sizeof(int);
1233     if (server_call( REQ_READ_PROCESS_MEMORY )) goto error;
1234
1235     if (size <= max - offset)
1236     {
1237         memcpy( buffer, (char *)req->data + offset, size );
1238         return TRUE;
1239     }
1240
1241     /* now take care of the remaining data */
1242     memcpy( buffer, (char *)req->data + offset, max - offset );
1243     pos = max - offset;
1244     size -= pos;
1245     while (size)
1246     {
1247         if (max > size) max = size;
1248         req->handle = process;
1249         req->addr   = (char *)addr + pos;
1250         req->len    = (max + sizeof(int) - 1) / sizeof(int);
1251         if (server_call( REQ_READ_PROCESS_MEMORY )) goto error;
1252         memcpy( (char *)buffer + pos, (char *)req->data, max );
1253         size -= max;
1254         pos += max;
1255     }
1256     return TRUE;
1257
1258  error:
1259     if (bytes_read) *bytes_read = 0;
1260     return FALSE;
1261 }
1262
1263
1264 /***********************************************************************
1265  *           WriteProcessMemory                 (KERNEL32)
1266  */
1267 BOOL WINAPI WriteProcessMemory( HANDLE process, LPVOID addr, LPVOID buffer, DWORD size,
1268                                 LPDWORD bytes_written )
1269 {
1270     unsigned int first_offset, last_offset;
1271     struct write_process_memory_request *req = get_req_buffer();
1272     unsigned int max = server_remaining( req->data );  /* max length in one request */
1273     unsigned int pos, last_mask;
1274
1275     if (!size)
1276     {
1277         SetLastError( ERROR_INVALID_PARAMETER );
1278         return FALSE;
1279     }
1280     if (bytes_written) *bytes_written = size;
1281
1282     /* compute the mask for the first int */
1283     req->first_mask = ~0;
1284     first_offset = (unsigned int)addr % sizeof(int);
1285     memset( &req->first_mask, 0, first_offset );
1286
1287     /* compute the mask for the last int */
1288     last_offset = (size + first_offset) % sizeof(int);
1289     last_mask = 0;
1290     memset( &last_mask, 0xff, last_offset ? last_offset : sizeof(int) );
1291
1292     req->handle = process;
1293     req->addr = (char *)addr - first_offset;
1294     /* for the first request, use the total length */
1295     req->len = (size + first_offset + sizeof(int) - 1) / sizeof(int);
1296
1297     if (size + first_offset < max)  /* we can do it in one round */
1298     {
1299         memcpy( (char *)req->data + first_offset, buffer, size );
1300         req->last_mask = last_mask;
1301         if (server_call( REQ_WRITE_PROCESS_MEMORY )) goto error;
1302         return TRUE;
1303     }
1304
1305     /* needs multiple server calls */
1306
1307     memcpy( (char *)req->data + first_offset, buffer, max - first_offset );
1308     req->last_mask = ~0;
1309     if (server_call( REQ_WRITE_PROCESS_MEMORY )) goto error;
1310     pos = max - first_offset;
1311     size -= pos;
1312     while (size)
1313     {
1314         if (size <= max)  /* last one */
1315         {
1316             req->last_mask = last_mask;
1317             max = size;
1318         }
1319         req->handle = process;
1320         req->addr = (char *)addr + pos;
1321         req->len = (max + sizeof(int) - 1) / sizeof(int);
1322         req->first_mask = ~0;
1323         memcpy( req->data, (char *) buffer + pos, max );
1324         if (server_call( REQ_WRITE_PROCESS_MEMORY )) goto error;
1325         pos += max;
1326         size -= max;
1327     }
1328     return TRUE;
1329
1330  error:
1331     if (bytes_written) *bytes_written = 0;
1332     return FALSE;
1333
1334 }
1335
1336
1337 /***********************************************************************
1338  *           RegisterServiceProcess             (KERNEL, KERNEL32)
1339  *
1340  * A service process calls this function to ensure that it continues to run
1341  * even after a user logged off.
1342  */
1343 DWORD WINAPI RegisterServiceProcess(DWORD dwProcessId, DWORD dwType)
1344 {
1345         /* I don't think that Wine needs to do anything in that function */
1346         return 1; /* success */
1347 }
1348
1349 /***********************************************************************
1350  * GetExitCodeProcess [KERNEL32.325]
1351  *
1352  * Gets termination status of specified process
1353  * 
1354  * RETURNS
1355  *   Success: TRUE
1356  *   Failure: FALSE
1357  */
1358 BOOL WINAPI GetExitCodeProcess(
1359     HANDLE hProcess,  /* [I] handle to the process */
1360     LPDWORD lpExitCode) /* [O] address to receive termination status */
1361 {
1362     BOOL ret = FALSE;
1363     struct get_process_info_request *req = get_req_buffer();
1364     req->handle = hProcess;
1365     if (!server_call( REQ_GET_PROCESS_INFO ))
1366     {
1367         if (lpExitCode) *lpExitCode = req->exit_code;
1368         ret = TRUE;
1369     }
1370     return ret;
1371 }
1372
1373
1374 /***********************************************************************
1375  *           SetErrorMode   (KERNEL32.486)
1376  */
1377 UINT WINAPI SetErrorMode( UINT mode )
1378 {
1379     UINT old = PROCESS_Current()->error_mode;
1380     PROCESS_Current()->error_mode = mode;
1381     return old;
1382 }
1383
1384 /***********************************************************************
1385  *           GetCurrentProcess   (KERNEL32.198)
1386  */
1387 #undef GetCurrentProcess
1388 HANDLE WINAPI GetCurrentProcess(void)
1389 {
1390     return 0xffffffff;
1391 }