Stubs for job control.
[wine] / dlls / kernel / process.c
1 /*
2  * Win32 processes
3  *
4  * Copyright 1996, 1998 Alexandre Julliard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "config.h"
22 #include "wine/port.h"
23
24 #include <assert.h>
25 #include <ctype.h>
26 #include <errno.h>
27 #include <locale.h>
28 #include <signal.h>
29 #include <stdio.h>
30
31 #include "wine/winbase16.h"
32 #include "wine/winuser16.h"
33 #include "ntstatus.h"
34 #include "thread.h"
35 #include "drive.h"
36 #include "file.h"
37 #include "heap.h"
38 #include "module.h"
39 #include "options.h"
40 #include "kernel_private.h"
41 #include "wine/server.h"
42 #include "wine/unicode.h"
43 #include "wine/debug.h"
44
45 WINE_DEFAULT_DEBUG_CHANNEL(process);
46 WINE_DECLARE_DEBUG_CHANNEL(server);
47 WINE_DECLARE_DEBUG_CHANNEL(relay);
48
49 static UINT process_error_mode;
50
51 static HANDLE main_exe_file;
52 static DWORD shutdown_flags = 0;
53 static DWORD shutdown_priority = 0x280;
54 static DWORD process_dword;
55 static BOOL oem_file_apis;
56
57 static unsigned int server_startticks;
58 int main_create_flags = 0;
59
60 /* Process flags */
61 #define PDB32_DEBUGGED      0x0001  /* Process is being debugged */
62 #define PDB32_WIN16_PROC    0x0008  /* Win16 process */
63 #define PDB32_DOS_PROC      0x0010  /* Dos process */
64 #define PDB32_CONSOLE_PROC  0x0020  /* Console process */
65 #define PDB32_FILE_APIS_OEM 0x0040  /* File APIs are OEM */
66 #define PDB32_WIN32S_PROC   0x8000  /* Win32s process */
67
68 static const WCHAR comW[] = {'.','c','o','m',0};
69 static const WCHAR batW[] = {'.','b','a','t',0};
70 static const WCHAR winevdmW[] = {'w','i','n','e','v','d','m','.','e','x','e',0};
71
72 extern void SHELL_LoadRegistry(void);
73 extern void VERSION_Init( const WCHAR *appname );
74 extern void MODULE_InitLoadPath(void);
75 extern void LOCALE_Init(void);
76
77 /***********************************************************************
78  *           contains_path
79  */
80 inline static int contains_path( LPCWSTR name )
81 {
82     return ((*name && (name[1] == ':')) || strchrW(name, '/') || strchrW(name, '\\'));
83 }
84
85
86 /***************************************************************************
87  *      get_builtin_path
88  *
89  * Get the path of a builtin module when the native file does not exist.
90  */
91 static BOOL get_builtin_path( const WCHAR *libname, const WCHAR *ext, WCHAR *filename, UINT size )
92 {
93     WCHAR *file_part;
94     WCHAR sysdir[MAX_PATH];
95     UINT len = GetSystemDirectoryW( sysdir, MAX_PATH );
96
97     if (contains_path( libname ))
98     {
99         if (RtlGetFullPathName_U( libname, size * sizeof(WCHAR),
100                                   filename, &file_part ) > size * sizeof(WCHAR))
101             return FALSE;  /* too long */
102
103         if (strncmpiW( filename, sysdir, len ) || filename[len] != '\\')
104             return FALSE;
105         while (filename[len] == '\\') len++;
106         if (filename != file_part) return FALSE;
107     }
108     else
109     {
110         if (strlenW(libname) + len + 2 >= size) return FALSE;  /* too long */
111         memcpy( filename, sysdir, len * sizeof(WCHAR) );
112         file_part = filename + len;
113         if (file_part > filename && file_part[-1] != '\\') *file_part++ = '\\';
114         strcpyW( file_part, libname );
115     }
116     if (ext && !strchrW( file_part, '.' ))
117     {
118         if (file_part + strlenW(file_part) + strlenW(ext) + 1 > filename + size)
119             return FALSE;  /* too long */
120         strcatW( file_part, ext );
121     }
122     return TRUE;
123 }
124
125
126 /***********************************************************************
127  *           open_builtin_exe_file
128  *
129  * Open an exe file for a builtin exe.
130  */
131 static void *open_builtin_exe_file( const WCHAR *name, char *error, int error_size,
132                                     int test_only, int *file_exists )
133 {
134     char exename[MAX_PATH];
135     WCHAR *p;
136     UINT i, len;
137
138     if ((p = strrchrW( name, '/' ))) name = p + 1;
139     if ((p = strrchrW( name, '\\' ))) name = p + 1;
140
141     /* we don't want to depend on the current codepage here */
142     len = strlenW( name ) + 1;
143     if (len >= sizeof(exename)) return NULL;
144     for (i = 0; i < len; i++)
145     {
146         if (name[i] > 127) return NULL;
147         exename[i] = (char)name[i];
148         if (exename[i] >= 'A' && exename[i] <= 'Z') exename[i] += 'a' - 'A';
149     }
150     return wine_dll_load_main_exe( exename, error, error_size, test_only, file_exists );
151 }
152
153
154 /***********************************************************************
155  *           open_exe_file
156  *
157  * Open a specific exe file, taking load order into account.
158  * Returns the file handle or 0 for a builtin exe.
159  */
160 static HANDLE open_exe_file( const WCHAR *name )
161 {
162     enum loadorder_type loadorder[LOADORDER_NTYPES];
163     WCHAR buffer[MAX_PATH];
164     HANDLE handle;
165     int i, file_exists;
166
167     TRACE("looking for %s\n", debugstr_w(name) );
168
169     if ((handle = CreateFileW( name, GENERIC_READ, FILE_SHARE_READ,
170                                NULL, OPEN_EXISTING, 0, 0 )) == INVALID_HANDLE_VALUE)
171     {
172         /* file doesn't exist, check for builtin */
173         if (!contains_path( name )) goto error;
174         if (!get_builtin_path( name, NULL, buffer, sizeof(buffer) )) goto error;
175         name = buffer;
176     }
177
178     MODULE_GetLoadOrderW( loadorder, NULL, name, TRUE );
179
180     for(i = 0; i < LOADORDER_NTYPES; i++)
181     {
182         if (loadorder[i] == LOADORDER_INVALID) break;
183         switch(loadorder[i])
184         {
185         case LOADORDER_DLL:
186             TRACE( "Trying native exe %s\n", debugstr_w(name) );
187             if (handle != INVALID_HANDLE_VALUE) return handle;
188             break;
189         case LOADORDER_BI:
190             TRACE( "Trying built-in exe %s\n", debugstr_w(name) );
191             open_builtin_exe_file( name, NULL, 0, 1, &file_exists );
192             if (file_exists)
193             {
194                 if (handle != INVALID_HANDLE_VALUE) CloseHandle(handle);
195                 return 0;
196             }
197         default:
198             break;
199         }
200     }
201     if (handle != INVALID_HANDLE_VALUE) CloseHandle(handle);
202
203  error:
204     SetLastError( ERROR_FILE_NOT_FOUND );
205     return INVALID_HANDLE_VALUE;
206 }
207
208
209 /***********************************************************************
210  *           find_exe_file
211  *
212  * Open an exe file, and return the full name and file handle.
213  * Returns FALSE if file could not be found.
214  * If file exists but cannot be opened, returns TRUE and set handle to INVALID_HANDLE_VALUE.
215  * If file is a builtin exe, returns TRUE and sets handle to 0.
216  */
217 static BOOL find_exe_file( const WCHAR *name, WCHAR *buffer, int buflen, HANDLE *handle )
218 {
219     static const WCHAR exeW[] = {'.','e','x','e',0};
220
221     enum loadorder_type loadorder[LOADORDER_NTYPES];
222     int i, file_exists;
223
224     TRACE("looking for %s\n", debugstr_w(name) );
225
226     if (!SearchPathW( NULL, name, exeW, buflen, buffer, NULL ) &&
227         !get_builtin_path( name, exeW, buffer, buflen ))
228     {
229         /* no builtin found, try native without extension in case it is a Unix app */
230
231         if (SearchPathW( NULL, name, NULL, buflen, buffer, NULL ))
232         {
233             TRACE( "Trying native/Unix binary %s\n", debugstr_w(buffer) );
234             if ((*handle = CreateFileW( buffer, GENERIC_READ, FILE_SHARE_READ,
235                                         NULL, OPEN_EXISTING, 0, 0 )) != INVALID_HANDLE_VALUE)
236                 return TRUE;
237         }
238         return FALSE;
239     }
240
241     MODULE_GetLoadOrderW( loadorder, NULL, buffer, TRUE );
242
243     for(i = 0; i < LOADORDER_NTYPES; i++)
244     {
245         if (loadorder[i] == LOADORDER_INVALID) break;
246         switch(loadorder[i])
247         {
248         case LOADORDER_DLL:
249             TRACE( "Trying native exe %s\n", debugstr_w(buffer) );
250             if ((*handle = CreateFileW( buffer, GENERIC_READ, FILE_SHARE_READ,
251                                         NULL, OPEN_EXISTING, 0, 0 )) != INVALID_HANDLE_VALUE)
252                 return TRUE;
253             if (GetLastError() != ERROR_FILE_NOT_FOUND) return TRUE;
254             break;
255         case LOADORDER_BI:
256             TRACE( "Trying built-in exe %s\n", debugstr_w(buffer) );
257             open_builtin_exe_file( buffer, NULL, 0, 1, &file_exists );
258             if (file_exists)
259             {
260                 *handle = 0;
261                 return TRUE;
262             }
263             break;
264         default:
265             break;
266         }
267     }
268     SetLastError( ERROR_FILE_NOT_FOUND );
269     return FALSE;
270 }
271
272
273 /**********************************************************************
274  *           load_pe_exe
275  *
276  * Load a PE format EXE file.
277  */
278 static HMODULE load_pe_exe( const WCHAR *name, HANDLE file )
279 {
280     IMAGE_NT_HEADERS *nt;
281     HANDLE mapping;
282     void *module;
283     OBJECT_ATTRIBUTES attr;
284     LARGE_INTEGER size;
285     DWORD len = 0;
286     UINT drive_type;
287
288     attr.Length                   = sizeof(attr);
289     attr.RootDirectory            = 0;
290     attr.ObjectName               = NULL;
291     attr.Attributes               = 0;
292     attr.SecurityDescriptor       = NULL;
293     attr.SecurityQualityOfService = NULL;
294     size.QuadPart = 0;
295
296     if (NtCreateSection( &mapping, STANDARD_RIGHTS_REQUIRED | SECTION_QUERY | SECTION_MAP_READ,
297                          &attr, &size, 0, SEC_IMAGE, file ) != STATUS_SUCCESS)
298         return NULL;
299
300     module = NULL;
301     if (NtMapViewOfSection( mapping, GetCurrentProcess(), &module, 0, 0, &size, &len,
302                             ViewShare, 0, PAGE_READONLY ) != STATUS_SUCCESS)
303         return NULL;
304
305     NtClose( mapping );
306
307     /* virus check */
308     nt = RtlImageNtHeader( module );
309     if (nt->OptionalHeader.AddressOfEntryPoint)
310     {
311         if (!RtlImageRvaToSection( nt, module, nt->OptionalHeader.AddressOfEntryPoint ))
312             MESSAGE("VIRUS WARNING: PE module %s has an invalid entrypoint (0x%08lx) "
313                     "outside all sections (possibly infected by Tchernobyl/SpaceFiller virus)!\n",
314                     debugstr_w(name), nt->OptionalHeader.AddressOfEntryPoint );
315     }
316
317     drive_type = GetDriveTypeW( name );
318     /* don't keep the file handle open on removable media */
319     if (drive_type == DRIVE_REMOVABLE || drive_type == DRIVE_CDROM)
320     {
321         CloseHandle( main_exe_file );
322         main_exe_file = 0;
323     }
324
325     return module;
326 }
327
328 /***********************************************************************
329  *           build_initial_environment
330  *
331  * Build the Win32 environment from the Unix environment
332  */
333 static BOOL build_initial_environment( char **environ )
334 {
335     ULONG size = 1;
336     char **e;
337     WCHAR *p, *endptr;
338     void *ptr;
339
340     /* Compute the total size of the Unix environment */
341     for (e = environ; *e; e++)
342     {
343         if (!memcmp(*e, "PATH=", 5)) continue;
344         size += MultiByteToWideChar( CP_UNIXCP, 0, *e, -1, NULL, 0 );
345     }
346     size *= sizeof(WCHAR);
347
348     /* Now allocate the environment */
349     if (NtAllocateVirtualMemory(NtCurrentProcess(), &ptr, 0, &size,
350                                 MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE) != STATUS_SUCCESS)
351         return FALSE;
352
353     NtCurrentTeb()->Peb->ProcessParameters->Environment = p = ptr;
354     endptr = p + size / sizeof(WCHAR);
355
356     /* And fill it with the Unix environment */
357     for (e = environ; *e; e++)
358     {
359         char *str = *e;
360         /* skip Unix PATH and store WINEPATH as PATH */
361         if (!memcmp(str, "PATH=", 5)) continue;
362         if (!memcmp(str, "WINEPATH=", 9 )) str += 4;
363         MultiByteToWideChar( CP_UNIXCP, 0, str, -1, p, endptr - p );
364         p += strlenW(p) + 1;
365     }
366     *p = 0;
367     return TRUE;
368 }
369
370
371 /***********************************************************************
372  *              set_library_wargv
373  *
374  * Set the Wine library Unicode argv global variables.
375  */
376 static void set_library_wargv( char **argv )
377 {
378     int argc;
379     WCHAR *p;
380     WCHAR **wargv;
381     DWORD total = 0;
382
383     for (argc = 0; argv[argc]; argc++)
384         total += MultiByteToWideChar( CP_UNIXCP, 0, argv[argc], -1, NULL, 0 );
385
386     wargv = RtlAllocateHeap( GetProcessHeap(), 0,
387                              total * sizeof(WCHAR) + (argc + 1) * sizeof(*wargv) );
388     p = (WCHAR *)(wargv + argc + 1);
389     for (argc = 0; argv[argc]; argc++)
390     {
391         DWORD reslen = MultiByteToWideChar( CP_UNIXCP, 0, argv[argc], -1, p, total );
392         wargv[argc] = p;
393         p += reslen;
394         total -= reslen;
395     }
396     wargv[argc] = NULL;
397     __wine_main_wargv = wargv;
398 }
399
400
401 /***********************************************************************
402  *           build_command_line
403  *
404  * Build the command line of a process from the argv array.
405  *
406  * Note that it does NOT necessarily include the file name.
407  * Sometimes we don't even have any command line options at all.
408  *
409  * We must quote and escape characters so that the argv array can be rebuilt
410  * from the command line:
411  * - spaces and tabs must be quoted
412  *   'a b'   -> '"a b"'
413  * - quotes must be escaped
414  *   '"'     -> '\"'
415  * - if '\'s are followed by a '"', they must be doubled and followed by '\"',
416  *   resulting in an odd number of '\' followed by a '"'
417  *   '\"'    -> '\\\"'
418  *   '\\"'   -> '\\\\\"'
419  * - '\'s that are not followed by a '"' can be left as is
420  *   'a\b'   == 'a\b'
421  *   'a\\b'  == 'a\\b'
422  */
423 static BOOL build_command_line( WCHAR **argv )
424 {
425     int len;
426     WCHAR **arg;
427     LPWSTR p;
428     RTL_USER_PROCESS_PARAMETERS* rupp = NtCurrentTeb()->Peb->ProcessParameters;
429
430     if (rupp->CommandLine.Buffer) return TRUE; /* already got it from the server */
431
432     len = 0;
433     for (arg = argv; *arg; arg++)
434     {
435         int has_space,bcount;
436         WCHAR* a;
437
438         has_space=0;
439         bcount=0;
440         a=*arg;
441         if( !*a ) has_space=1;
442         while (*a!='\0') {
443             if (*a=='\\') {
444                 bcount++;
445             } else {
446                 if (*a==' ' || *a=='\t') {
447                     has_space=1;
448                 } else if (*a=='"') {
449                     /* doubling of '\' preceeding a '"',
450                      * plus escaping of said '"'
451                      */
452                     len+=2*bcount+1;
453                 }
454                 bcount=0;
455             }
456             a++;
457         }
458         len+=(a-*arg)+1 /* for the separating space */;
459         if (has_space)
460             len+=2; /* for the quotes */
461     }
462
463     if (!(rupp->CommandLine.Buffer = RtlAllocateHeap( GetProcessHeap(), 0, len * sizeof(WCHAR))))
464         return FALSE;
465
466     p = rupp->CommandLine.Buffer;
467     rupp->CommandLine.Length = (len - 1) * sizeof(WCHAR);
468     rupp->CommandLine.MaximumLength = len * sizeof(WCHAR);
469     for (arg = argv; *arg; arg++)
470     {
471         int has_space,has_quote;
472         WCHAR* a;
473
474         /* Check for quotes and spaces in this argument */
475         has_space=has_quote=0;
476         a=*arg;
477         if( !*a ) has_space=1;
478         while (*a!='\0') {
479             if (*a==' ' || *a=='\t') {
480                 has_space=1;
481                 if (has_quote)
482                     break;
483             } else if (*a=='"') {
484                 has_quote=1;
485                 if (has_space)
486                     break;
487             }
488             a++;
489         }
490
491         /* Now transfer it to the command line */
492         if (has_space)
493             *p++='"';
494         if (has_quote) {
495             int bcount;
496             WCHAR* a;
497
498             bcount=0;
499             a=*arg;
500             while (*a!='\0') {
501                 if (*a=='\\') {
502                     *p++=*a;
503                     bcount++;
504                 } else {
505                     if (*a=='"') {
506                         int i;
507
508                         /* Double all the '\\' preceeding this '"', plus one */
509                         for (i=0;i<=bcount;i++)
510                             *p++='\\';
511                         *p++='"';
512                     } else {
513                         *p++=*a;
514                     }
515                     bcount=0;
516                 }
517                 a++;
518             }
519         } else {
520             WCHAR* x = *arg;
521             while ((*p=*x++)) p++;
522         }
523         if (has_space)
524             *p++='"';
525         *p++=' ';
526     }
527     if (p > rupp->CommandLine.Buffer)
528         p--;  /* remove last space */
529     *p = '\0';
530
531     return TRUE;
532 }
533
534
535 /* make sure the unicode string doesn't point beyond the end pointer */
536 static inline void fix_unicode_string( UNICODE_STRING *str, char *end_ptr )
537 {
538     if ((char *)str->Buffer >= end_ptr)
539     {
540         str->Length = str->MaximumLength = 0;
541         str->Buffer = NULL;
542         return;
543     }
544     if ((char *)str->Buffer + str->MaximumLength > end_ptr)
545     {
546         str->MaximumLength = (end_ptr - (char *)str->Buffer) & ~(sizeof(WCHAR) - 1);
547     }
548     if (str->Length >= str->MaximumLength)
549     {
550         if (str->MaximumLength >= sizeof(WCHAR))
551             str->Length = str->MaximumLength - sizeof(WCHAR);
552         else
553             str->Length = str->MaximumLength = 0;
554     }
555 }
556
557
558 /***********************************************************************
559  *           init_user_process_params
560  *
561  * Fill the RTL_USER_PROCESS_PARAMETERS structure from the server.
562  */
563 static RTL_USER_PROCESS_PARAMETERS *init_user_process_params( size_t info_size )
564 {
565     void *ptr;
566     DWORD size;
567     NTSTATUS status;
568     RTL_USER_PROCESS_PARAMETERS *params;
569
570     size = info_size;
571     if ((status = NtAllocateVirtualMemory( NtCurrentProcess(), &ptr, NULL, &size,
572                                            MEM_COMMIT, PAGE_READWRITE )) != STATUS_SUCCESS)
573         return NULL;
574
575     SERVER_START_REQ( get_startup_info )
576     {
577         wine_server_set_reply( req, ptr, info_size );
578         wine_server_call( req );
579         info_size = wine_server_reply_size( reply );
580     }
581     SERVER_END_REQ;
582
583     params = ptr;
584     params->Size = info_size;
585     params->AllocationSize = size;
586
587     /* make sure the strings are valid */
588     fix_unicode_string( &params->CurrentDirectoryName, (char *)info_size );
589     fix_unicode_string( &params->DllPath, (char *)info_size );
590     fix_unicode_string( &params->ImagePathName, (char *)info_size );
591     fix_unicode_string( &params->CommandLine, (char *)info_size );
592     fix_unicode_string( &params->WindowTitle, (char *)info_size );
593     fix_unicode_string( &params->Desktop, (char *)info_size );
594     fix_unicode_string( &params->ShellInfo, (char *)info_size );
595     fix_unicode_string( &params->RuntimeInfo, (char *)info_size );
596
597     return RtlNormalizeProcessParams( params );
598 }
599
600
601 /***********************************************************************
602  *           process_init
603  *
604  * Main process initialisation code
605  */
606 static BOOL process_init( char *argv[], char **environ )
607 {
608     BOOL ret;
609     size_t info_size = 0;
610     RTL_USER_PROCESS_PARAMETERS *params;
611     PEB *peb = NtCurrentTeb()->Peb;
612     HANDLE hstdin, hstdout, hstderr;
613
614     setbuf(stdout,NULL);
615     setbuf(stderr,NULL);
616     setlocale(LC_CTYPE,"");
617
618     /* Retrieve startup info from the server */
619     SERVER_START_REQ( init_process )
620     {
621         req->peb      = peb;
622         req->ldt_copy = &wine_ldt_copy;
623         if ((ret = !wine_server_call_err( req )))
624         {
625             main_exe_file     = reply->exe_file;
626             main_create_flags = reply->create_flags;
627             info_size         = reply->info_size;
628             server_startticks = reply->server_start;
629             hstdin            = reply->hstdin;
630             hstdout           = reply->hstdout;
631             hstderr           = reply->hstderr;
632         }
633     }
634     SERVER_END_REQ;
635     if (!ret) return FALSE;
636
637     if (info_size == 0)
638     {
639         params = peb->ProcessParameters;
640
641         /* This is wine specific: we have no parent (we're started from unix)
642          * so, create a simple console with bare handles to unix stdio 
643          * input & output streams (aka simple console)
644          */
645         wine_server_fd_to_handle( 0, GENERIC_READ|SYNCHRONIZE,  TRUE, &params->hStdInput );
646         wine_server_fd_to_handle( 1, GENERIC_WRITE|SYNCHRONIZE, TRUE, &params->hStdOutput );
647         wine_server_fd_to_handle( 2, GENERIC_WRITE|SYNCHRONIZE, TRUE, &params->hStdError );
648
649         /* <hack: to be changed later on> */
650         params->CurrentDirectoryName.Length = 3 * sizeof(WCHAR);
651         params->CurrentDirectoryName.MaximumLength = RtlGetLongestNtPathLength() * sizeof(WCHAR);
652         params->CurrentDirectoryName.Buffer = RtlAllocateHeap( GetProcessHeap(), 0, params->CurrentDirectoryName.MaximumLength);
653         params->CurrentDirectoryName.Buffer[0] = 'C';
654         params->CurrentDirectoryName.Buffer[1] = ':';
655         params->CurrentDirectoryName.Buffer[2] = '\\';
656         params->CurrentDirectoryName.Buffer[3] = '\0';
657         /* </hack: to be changed later on> */
658     }
659     else
660     {
661         if (!(params = init_user_process_params( info_size ))) return FALSE;
662         peb->ProcessParameters = params;
663
664         /* convert value from server:
665          * + 0 => INVALID_HANDLE_VALUE
666          * + console handle need to be mapped
667          */
668         if (!hstdin)
669             hstdin = INVALID_HANDLE_VALUE;
670         else if (VerifyConsoleIoHandle(console_handle_map(hstdin)))
671             hstdin = console_handle_map(hstdin);
672
673         if (!hstdout)
674             hstdout = INVALID_HANDLE_VALUE;
675         else if (VerifyConsoleIoHandle(console_handle_map(hstdout)))
676             hstdout = console_handle_map(hstdout);
677
678         if (!hstderr)
679             hstderr = INVALID_HANDLE_VALUE;
680         else if (VerifyConsoleIoHandle(console_handle_map(hstderr)))
681             hstderr = console_handle_map(hstderr);
682
683         params->hStdInput  = hstdin;
684         params->hStdOutput = hstdout;
685         params->hStdError  = hstderr;
686     }
687
688     LOCALE_Init();
689
690     /* Copy the parent environment */
691     if (!build_initial_environment( environ )) return FALSE;
692
693     /* Parse command line arguments */
694     OPTIONS_ParseOptions( !info_size ? argv : NULL );
695
696     /* initialise DOS drives */
697     if (!DRIVE_Init()) return FALSE;
698
699     /* initialise DOS directories */
700     if (!DIR_Init()) return FALSE;
701
702     /* registry initialisation */
703     SHELL_LoadRegistry();
704
705     /* global boot finished, the rest is process-local */
706     SERVER_START_REQ( boot_done )
707     {
708         req->debug_level = TRACE_ON(server);
709         wine_server_call( req );
710     }
711     SERVER_END_REQ;
712
713     return TRUE;
714 }
715
716
717 /***********************************************************************
718  *           start_process
719  *
720  * Startup routine of a new process. Runs on the new process stack.
721  */
722 static void start_process( void *arg )
723 {
724     __TRY
725     {
726         PEB *peb = NtCurrentTeb()->Peb;
727         IMAGE_NT_HEADERS *nt;
728         LPTHREAD_START_ROUTINE entry;
729
730         LdrInitializeThunk( main_exe_file, CreateFileW, 0, 0 );
731
732         nt = RtlImageNtHeader( peb->ImageBaseAddress );
733         entry = (LPTHREAD_START_ROUTINE)((char *)peb->ImageBaseAddress +
734                                          nt->OptionalHeader.AddressOfEntryPoint);
735
736         if (TRACE_ON(relay))
737             DPRINTF( "%04lx:Starting process %s (entryproc=%p)\n", GetCurrentThreadId(),
738                      debugstr_w(peb->ProcessParameters->ImagePathName.Buffer), entry );
739
740         SetLastError( 0 );  /* clear error code */
741         if (peb->BeingDebugged) DbgBreakPoint();
742         ExitProcess( entry( peb ) );
743     }
744     __EXCEPT(UnhandledExceptionFilter)
745     {
746         TerminateThread( GetCurrentThread(), GetExceptionCode() );
747     }
748     __ENDTRY
749 }
750
751
752 /***********************************************************************
753  *           __wine_kernel_init
754  *
755  * Wine initialisation: load and start the main exe file.
756  */
757 void __wine_kernel_init(void)
758 {
759     WCHAR *main_exe_name, *p;
760     char error[1024];
761     DWORD stack_size = 0;
762     int file_exists;
763     PEB *peb = NtCurrentTeb()->Peb;
764
765     /* Initialize everything */
766     if (!process_init( __wine_main_argv, __wine_main_environ )) exit(1);
767     /* update argc in case options have been removed */
768     for (__wine_main_argc = 0; __wine_main_argv[__wine_main_argc]; __wine_main_argc++) /*nothing*/;
769
770     __wine_main_argv++;  /* remove argv[0] (wine itself) */
771     __wine_main_argc--;
772
773     if (!(main_exe_name = peb->ProcessParameters->ImagePathName.Buffer))
774     {
775         WCHAR buffer[MAX_PATH];
776         WCHAR exe_nameW[MAX_PATH];
777
778         if (!__wine_main_argv[0]) OPTIONS_Usage();
779
780         MultiByteToWideChar( CP_UNIXCP, 0, __wine_main_argv[0], -1, exe_nameW, MAX_PATH );
781         if (!find_exe_file( exe_nameW, buffer, MAX_PATH, &main_exe_file ))
782         {
783             MESSAGE( "wine: cannot find '%s'\n", __wine_main_argv[0] );
784             ExitProcess(1);
785         }
786         if (main_exe_file == INVALID_HANDLE_VALUE)
787         {
788             MESSAGE( "wine: cannot open %s\n", debugstr_w(main_exe_name) );
789             ExitProcess(1);
790         }
791         RtlCreateUnicodeString( &peb->ProcessParameters->ImagePathName, buffer );
792         main_exe_name = peb->ProcessParameters->ImagePathName.Buffer;
793     }
794
795     TRACE( "starting process name=%s file=%p argv[0]=%s\n",
796            debugstr_w(main_exe_name), main_exe_file, debugstr_a(__wine_main_argv[0]) );
797
798     MODULE_InitLoadPath();
799     VERSION_Init( main_exe_name );
800
801     if (!main_exe_file)  /* no file handle -> Winelib app */
802     {
803         TRACE( "starting Winelib app %s\n", debugstr_w(main_exe_name) );
804         if (open_builtin_exe_file( main_exe_name, error, sizeof(error), 0, &file_exists ))
805             goto found;
806         MESSAGE( "wine: cannot open builtin library for %s: %s\n",
807                  debugstr_w(main_exe_name), error );
808         ExitProcess(1);
809     }
810
811     switch( MODULE_GetBinaryType( main_exe_file ))
812     {
813     case BINARY_PE_EXE:
814         TRACE( "starting Win32 binary %s\n", debugstr_w(main_exe_name) );
815         if ((peb->ImageBaseAddress = load_pe_exe( main_exe_name, main_exe_file )))
816             goto found;
817         MESSAGE( "wine: could not load %s as Win32 binary\n", debugstr_w(main_exe_name) );
818         ExitProcess(1);
819     case BINARY_PE_DLL:
820         MESSAGE( "wine: %s is a DLL, not an executable\n", debugstr_w(main_exe_name) );
821         ExitProcess(1);
822     case BINARY_UNKNOWN:
823         /* check for .com extension */
824         if (!(p = strrchrW( main_exe_name, '.' )) || strcmpiW( p, comW ))
825         {
826             MESSAGE( "wine: cannot determine executable type for %s\n",
827                      debugstr_w(main_exe_name) );
828             ExitProcess(1);
829         }
830         /* fall through */
831     case BINARY_WIN16:
832     case BINARY_DOS:
833         TRACE( "starting Win16/DOS binary %s\n", debugstr_w(main_exe_name) );
834         CloseHandle( main_exe_file );
835         main_exe_file = 0;
836         __wine_main_argv--;
837         __wine_main_argc++;
838         __wine_main_argv[0] = "winevdm.exe";
839         if (open_builtin_exe_file( winevdmW, error, sizeof(error), 0, &file_exists ))
840             goto found;
841         MESSAGE( "wine: trying to run %s, cannot open builtin library for 'winevdm.exe': %s\n",
842                  debugstr_w(main_exe_name), error );
843         ExitProcess(1);
844     case BINARY_OS216:
845         MESSAGE( "wine: %s is an OS/2 binary, not supported\n", debugstr_w(main_exe_name) );
846         ExitProcess(1);
847     case BINARY_UNIX_EXE:
848         MESSAGE( "wine: %s is a Unix binary, not supported\n", debugstr_w(main_exe_name) );
849         ExitProcess(1);
850     case BINARY_UNIX_LIB:
851         {
852             DOS_FULL_NAME full_name;
853
854             TRACE( "starting Winelib app %s\n", debugstr_w(main_exe_name) );
855             CloseHandle( main_exe_file );
856             main_exe_file = 0;
857             if (DOSFS_GetFullName( main_exe_name, TRUE, &full_name ) &&
858                 wine_dlopen( full_name.long_name, RTLD_NOW, error, sizeof(error) ))
859             {
860                 static const WCHAR soW[] = {'.','s','o',0};
861                 if ((p = strrchrW( main_exe_name, '.' )) && !strcmpW( p, soW ))
862                 {
863                     *p = 0;
864                     /* update the unicode string */
865                     RtlInitUnicodeString( &peb->ProcessParameters->ImagePathName, main_exe_name );
866                 }
867                 goto found;
868             }
869             MESSAGE( "wine: could not load %s: %s\n", debugstr_w(main_exe_name), error );
870             ExitProcess(1);
871         }
872     }
873
874  found:
875     /* build command line */
876     set_library_wargv( __wine_main_argv );
877     if (!build_command_line( __wine_main_wargv )) goto error;
878
879     stack_size = RtlImageNtHeader(peb->ImageBaseAddress)->OptionalHeader.SizeOfStackReserve;
880
881     /* allocate main thread stack */
882     if (!THREAD_InitStack( NtCurrentTeb(), stack_size )) goto error;
883
884     /* switch to the new stack */
885     wine_switch_to_stack( start_process, NULL, NtCurrentTeb()->Tib.StackBase );
886
887  error:
888     ExitProcess( GetLastError() );
889 }
890
891
892 /***********************************************************************
893  *           build_argv
894  *
895  * Build an argv array from a command-line.
896  * 'reserved' is the number of args to reserve before the first one.
897  */
898 static char **build_argv( const WCHAR *cmdlineW, int reserved )
899 {
900     int argc;
901     char** argv;
902     char *arg,*s,*d,*cmdline;
903     int in_quotes,bcount,len;
904
905     len = WideCharToMultiByte( CP_UNIXCP, 0, cmdlineW, -1, NULL, 0, NULL, NULL );
906     if (!(cmdline = malloc(len))) return NULL;
907     WideCharToMultiByte( CP_UNIXCP, 0, cmdlineW, -1, cmdline, len, NULL, NULL );
908
909     argc=reserved+1;
910     bcount=0;
911     in_quotes=0;
912     s=cmdline;
913     while (1) {
914         if (*s=='\0' || ((*s==' ' || *s=='\t') && !in_quotes)) {
915             /* space */
916             argc++;
917             /* skip the remaining spaces */
918             while (*s==' ' || *s=='\t') {
919                 s++;
920             }
921             if (*s=='\0')
922                 break;
923             bcount=0;
924             continue;
925         } else if (*s=='\\') {
926             /* '\', count them */
927             bcount++;
928         } else if ((*s=='"') && ((bcount & 1)==0)) {
929             /* unescaped '"' */
930             in_quotes=!in_quotes;
931             bcount=0;
932         } else {
933             /* a regular character */
934             bcount=0;
935         }
936         s++;
937     }
938     argv=malloc(argc*sizeof(*argv));
939     if (!argv)
940         return NULL;
941
942     arg=d=s=cmdline;
943     bcount=0;
944     in_quotes=0;
945     argc=reserved;
946     while (*s) {
947         if ((*s==' ' || *s=='\t') && !in_quotes) {
948             /* Close the argument and copy it */
949             *d=0;
950             argv[argc++]=arg;
951
952             /* skip the remaining spaces */
953             do {
954                 s++;
955             } while (*s==' ' || *s=='\t');
956
957             /* Start with a new argument */
958             arg=d=s;
959             bcount=0;
960         } else if (*s=='\\') {
961             /* '\\' */
962             *d++=*s++;
963             bcount++;
964         } else if (*s=='"') {
965             /* '"' */
966             if ((bcount & 1)==0) {
967                 /* Preceeded by an even number of '\', this is half that
968                  * number of '\', plus a '"' which we discard.
969                  */
970                 d-=bcount/2;
971                 s++;
972                 in_quotes=!in_quotes;
973             } else {
974                 /* Preceeded by an odd number of '\', this is half that
975                  * number of '\' followed by a '"'
976                  */
977                 d=d-bcount/2-1;
978                 *d++='"';
979                 s++;
980             }
981             bcount=0;
982         } else {
983             /* a regular character */
984             *d++=*s++;
985             bcount=0;
986         }
987     }
988     if (*arg) {
989         *d='\0';
990         argv[argc++]=arg;
991     }
992     argv[argc]=NULL;
993
994     return argv;
995 }
996
997
998 /***********************************************************************
999  *           alloc_env_string
1000  *
1001  * Allocate an environment string; helper for build_envp
1002  */
1003 static char *alloc_env_string( const char *name, const char *value )
1004 {
1005     char *ret = malloc( strlen(name) + strlen(value) + 1 );
1006     strcpy( ret, name );
1007     strcat( ret, value );
1008     return ret;
1009 }
1010
1011 /***********************************************************************
1012  *           build_envp
1013  *
1014  * Build the environment of a new child process.
1015  */
1016 static char **build_envp( const WCHAR *envW, const WCHAR *extra_envW )
1017 {
1018     const WCHAR *p;
1019     char **envp;
1020     char *env, *extra_env = NULL;
1021     int count = 0, length;
1022
1023     if (extra_envW)
1024     {
1025         for (p = extra_envW; *p; count++) p += strlenW(p) + 1;
1026         p++;
1027         length = WideCharToMultiByte( CP_UNIXCP, 0, extra_envW, p - extra_envW,
1028                                       NULL, 0, NULL, NULL );
1029         if ((extra_env = malloc( length )))
1030             WideCharToMultiByte( CP_UNIXCP, 0, extra_envW, p - extra_envW,
1031                                  extra_env, length, NULL, NULL );
1032     }
1033     for (p = envW; *p; count++) p += strlenW(p) + 1;
1034     p++;
1035     length = WideCharToMultiByte( CP_UNIXCP, 0, envW, p - envW, NULL, 0, NULL, NULL );
1036     if (!(env = malloc( length ))) return NULL;
1037     WideCharToMultiByte( CP_UNIXCP, 0, envW, p - envW, env, length, NULL, NULL );
1038
1039     count += 4;
1040
1041     if ((envp = malloc( count * sizeof(*envp) )))
1042     {
1043         char **envptr = envp;
1044         char *p;
1045
1046         /* first the extra strings */
1047         if (extra_env) for (p = extra_env; *p; p += strlen(p) + 1) *envptr++ = p;
1048         /* then put PATH, HOME and WINEPREFIX from the unix env */
1049         if ((p = getenv("PATH"))) *envptr++ = alloc_env_string( "PATH=", p );
1050         if ((p = getenv("HOME"))) *envptr++ = alloc_env_string( "HOME=", p );
1051         if ((p = getenv("WINEPREFIX"))) *envptr++ = alloc_env_string( "WINEPREFIX=", p );
1052         /* now put the Windows environment strings */
1053         for (p = env; *p; p += strlen(p) + 1)
1054         {
1055             if (!memcmp( p, "PATH=", 5 ))  /* store PATH as WINEPATH */
1056                 *envptr++ = alloc_env_string( "WINEPATH=", p + 5 );
1057             else if (memcmp( p, "HOME=", 5 ) &&
1058                      memcmp( p, "WINEPATH=", 9 ) &&
1059                      memcmp( p, "WINEPREFIX=", 11 )) *envptr++ = p;
1060         }
1061         *envptr = 0;
1062     }
1063     return envp;
1064 }
1065
1066
1067 /***********************************************************************
1068  *           exec_wine_binary
1069  *
1070  * Locate the Wine binary to exec for a new Win32 process.
1071  */
1072 static void exec_wine_binary( char **argv, char **envp )
1073 {
1074     const char *path, *pos, *ptr;
1075
1076     /* first, try for a WINELOADER environment variable */
1077     argv[0] = getenv("WINELOADER");
1078     if (argv[0])
1079         execve( argv[0], argv, envp );
1080
1081     /* next, try bin directory */
1082     argv[0] = BINDIR "/wine";
1083     execve( argv[0], argv, envp );
1084
1085     /* now try the path of argv0 of the current binary */
1086     if ((path = wine_get_argv0_path()))
1087     {
1088         if (!(argv[0] = malloc( strlen(path) + sizeof("wine") ))) return;
1089         strcpy( argv[0], path );
1090         strcat( argv[0], "wine" );
1091         execve( argv[0], argv, envp );
1092         free( argv[0] );
1093     }
1094
1095     /* now search in the Unix path */
1096     if ((path = getenv( "PATH" )))
1097     {
1098         if (!(argv[0] = malloc( strlen(path) + 6 ))) return;
1099         pos = path;
1100         for (;;)
1101         {
1102             while (*pos == ':') pos++;
1103             if (!*pos) break;
1104             if (!(ptr = strchr( pos, ':' ))) ptr = pos + strlen(pos);
1105             memcpy( argv[0], pos, ptr - pos );
1106             strcpy( argv[0] + (ptr - pos), "/wine" );
1107             execve( argv[0], argv, envp );
1108             pos = ptr;
1109         }
1110     }
1111     free( argv[0] );
1112 }
1113
1114
1115 /***********************************************************************
1116  *           fork_and_exec
1117  *
1118  * Fork and exec a new Unix binary, checking for errors.
1119  */
1120 static int fork_and_exec( const char *filename, const WCHAR *cmdline,
1121                           const WCHAR *env, const char *newdir )
1122 {
1123     int fd[2];
1124     int pid, err;
1125
1126     if (!env) env = GetEnvironmentStringsW();
1127
1128     if (pipe(fd) == -1)
1129     {
1130         FILE_SetDosError();
1131         return -1;
1132     }
1133     fcntl( fd[1], F_SETFD, 1 );  /* set close on exec */
1134     if (!(pid = fork()))  /* child */
1135     {
1136         char **argv = build_argv( cmdline, 0 );
1137         char **envp = build_envp( env, NULL );
1138         close( fd[0] );
1139
1140         /* Reset signals that we previously set to SIG_IGN */
1141         signal( SIGPIPE, SIG_DFL );
1142         signal( SIGCHLD, SIG_DFL );
1143
1144         if (newdir) chdir(newdir);
1145
1146         if (argv && envp) execve( filename, argv, envp );
1147         err = errno;
1148         write( fd[1], &err, sizeof(err) );
1149         _exit(1);
1150     }
1151     close( fd[1] );
1152     if ((pid != -1) && (read( fd[0], &err, sizeof(err) ) > 0))  /* exec failed */
1153     {
1154         errno = err;
1155         pid = -1;
1156     }
1157     if (pid == -1) FILE_SetDosError();
1158     close( fd[0] );
1159     return pid;
1160 }
1161
1162
1163 /***********************************************************************
1164  *           create_user_params
1165  */
1166 static RTL_USER_PROCESS_PARAMETERS *create_user_params( LPCWSTR filename, LPCWSTR cmdline,
1167                                                         const STARTUPINFOW *startup )
1168 {
1169     RTL_USER_PROCESS_PARAMETERS *params;
1170     UNICODE_STRING image_str, cmdline_str, desktop, title;
1171     NTSTATUS status;
1172     WCHAR buffer[MAX_PATH];
1173
1174     if (GetLongPathNameW( filename, buffer, MAX_PATH ))
1175         RtlInitUnicodeString( &image_str, buffer );
1176     else
1177         RtlInitUnicodeString( &image_str, filename );
1178
1179     RtlInitUnicodeString( &cmdline_str, cmdline );
1180     if (startup->lpDesktop) RtlInitUnicodeString( &desktop, startup->lpDesktop );
1181     if (startup->lpTitle) RtlInitUnicodeString( &title, startup->lpTitle );
1182
1183     status = RtlCreateProcessParameters( &params, &image_str, NULL, NULL, &cmdline_str, NULL,
1184                                          startup->lpTitle ? &title : NULL,
1185                                          startup->lpDesktop ? &desktop : NULL,
1186                                          NULL, NULL );
1187     if (status != STATUS_SUCCESS)
1188     {
1189         SetLastError( RtlNtStatusToDosError(status) );
1190         return NULL;
1191     }
1192
1193     params->Environment     = NULL;  /* we pass it through the Unix environment */
1194     params->hStdInput       = startup->hStdInput;
1195     params->hStdOutput      = startup->hStdOutput;
1196     params->hStdError       = startup->hStdError;
1197     params->dwX             = startup->dwX;
1198     params->dwY             = startup->dwY;
1199     params->dwXSize         = startup->dwXSize;
1200     params->dwYSize         = startup->dwYSize;
1201     params->dwXCountChars   = startup->dwXCountChars;
1202     params->dwYCountChars   = startup->dwYCountChars;
1203     params->dwFillAttribute = startup->dwFillAttribute;
1204     params->dwFlags         = startup->dwFlags;
1205     params->wShowWindow     = startup->wShowWindow;
1206     return params;
1207 }
1208
1209
1210 /***********************************************************************
1211  *           create_process
1212  *
1213  * Create a new process. If hFile is a valid handle we have an exe
1214  * file, otherwise it is a Winelib app.
1215  */
1216 static BOOL create_process( HANDLE hFile, LPCWSTR filename, LPWSTR cmd_line, LPWSTR env,
1217                             LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
1218                             BOOL inherit, DWORD flags, LPSTARTUPINFOW startup,
1219                             LPPROCESS_INFORMATION info, LPCSTR unixdir )
1220 {
1221     BOOL ret, success = FALSE;
1222     HANDLE process_info;
1223     RTL_USER_PROCESS_PARAMETERS *params;
1224     WCHAR *extra_env = NULL;
1225     int startfd[2];
1226     int execfd[2];
1227     pid_t pid;
1228     int err;
1229     char dummy = 0;
1230
1231     if (!env)
1232     {
1233         env = GetEnvironmentStringsW();
1234         extra_env = DRIVE_BuildEnv();
1235     }
1236
1237     if (!(params = create_user_params( filename, cmd_line, startup )))
1238     {
1239         if (extra_env) HeapFree( GetProcessHeap(), 0, extra_env );
1240         return FALSE;
1241     }
1242
1243     /* create the synchronization pipes */
1244
1245     if (pipe( startfd ) == -1)
1246     {
1247         FILE_SetDosError();
1248         RtlDestroyProcessParameters( params );
1249         if (extra_env) HeapFree( GetProcessHeap(), 0, extra_env );
1250         return FALSE;
1251     }
1252     if (pipe( execfd ) == -1)
1253     {
1254         FILE_SetDosError();
1255         close( startfd[0] );
1256         close( startfd[1] );
1257         RtlDestroyProcessParameters( params );
1258         if (extra_env) HeapFree( GetProcessHeap(), 0, extra_env );
1259         return FALSE;
1260     }
1261     fcntl( execfd[1], F_SETFD, 1 );  /* set close on exec */
1262
1263     /* create the child process */
1264
1265     if (!(pid = fork()))  /* child */
1266     {
1267         char **argv = build_argv( cmd_line, 1 );
1268         char **envp = build_envp( env, extra_env );
1269
1270         close( startfd[1] );
1271         close( execfd[0] );
1272
1273         /* wait for parent to tell us to start */
1274         if (read( startfd[0], &dummy, 1 ) != 1) _exit(1);
1275
1276         close( startfd[0] );
1277         /* Reset signals that we previously set to SIG_IGN */
1278         signal( SIGPIPE, SIG_DFL );
1279         signal( SIGCHLD, SIG_DFL );
1280
1281         if (unixdir) chdir(unixdir);
1282
1283         if (argv && envp) exec_wine_binary( argv, envp );
1284
1285         err = errno;
1286         write( execfd[1], &err, sizeof(err) );
1287         _exit(1);
1288     }
1289
1290     /* this is the parent */
1291
1292     close( startfd[0] );
1293     close( execfd[1] );
1294     if (extra_env) HeapFree( GetProcessHeap(), 0, extra_env );
1295     if (pid == -1)
1296     {
1297         close( startfd[1] );
1298         close( execfd[0] );
1299         FILE_SetDosError();
1300         RtlDestroyProcessParameters( params );
1301         return FALSE;
1302     }
1303
1304     /* create the process on the server side */
1305
1306     SERVER_START_REQ( new_process )
1307     {
1308         req->inherit_all  = inherit;
1309         req->create_flags = flags;
1310         req->unix_pid     = pid;
1311         req->exe_file     = hFile;
1312         if (startup->dwFlags & STARTF_USESTDHANDLES)
1313         {
1314             req->hstdin  = startup->hStdInput;
1315             req->hstdout = startup->hStdOutput;
1316             req->hstderr = startup->hStdError;
1317         }
1318         else
1319         {
1320             req->hstdin  = GetStdHandle( STD_INPUT_HANDLE );
1321             req->hstdout = GetStdHandle( STD_OUTPUT_HANDLE );
1322             req->hstderr = GetStdHandle( STD_ERROR_HANDLE );
1323         }
1324
1325         if ((flags & (CREATE_NEW_CONSOLE | DETACHED_PROCESS)) != 0)
1326         {
1327             /* this is temporary (for console handles). We have no way to control that the handle is invalid in child process otherwise */
1328             if (is_console_handle(req->hstdin))  req->hstdin  = INVALID_HANDLE_VALUE;
1329             if (is_console_handle(req->hstdout)) req->hstdout = INVALID_HANDLE_VALUE;
1330             if (is_console_handle(req->hstderr)) req->hstderr = INVALID_HANDLE_VALUE;
1331         }
1332         else
1333         {
1334             if (is_console_handle(req->hstdin))  req->hstdin  = console_handle_unmap(req->hstdin);
1335             if (is_console_handle(req->hstdout)) req->hstdout = console_handle_unmap(req->hstdout);
1336             if (is_console_handle(req->hstderr)) req->hstderr = console_handle_unmap(req->hstderr);
1337         }
1338
1339         wine_server_add_data( req, params, params->Size );
1340         ret = !wine_server_call_err( req );
1341         process_info = reply->info;
1342     }
1343     SERVER_END_REQ;
1344
1345     RtlDestroyProcessParameters( params );
1346     if (!ret)
1347     {
1348         close( startfd[1] );
1349         close( execfd[0] );
1350         return FALSE;
1351     }
1352
1353     /* tell child to start and wait for it to exec */
1354
1355     write( startfd[1], &dummy, 1 );
1356     close( startfd[1] );
1357
1358     if (read( execfd[0], &err, sizeof(err) ) > 0) /* exec failed */
1359     {
1360         errno = err;
1361         FILE_SetDosError();
1362         close( execfd[0] );
1363         CloseHandle( process_info );
1364         return FALSE;
1365     }
1366
1367     /* wait for the new process info to be ready */
1368
1369     WaitForSingleObject( process_info, INFINITE );
1370     SERVER_START_REQ( get_new_process_info )
1371     {
1372         req->info     = process_info;
1373         req->pinherit = (psa && (psa->nLength >= sizeof(*psa)) && psa->bInheritHandle);
1374         req->tinherit = (tsa && (tsa->nLength >= sizeof(*tsa)) && tsa->bInheritHandle);
1375         if ((ret = !wine_server_call_err( req )))
1376         {
1377             info->dwProcessId = (DWORD)reply->pid;
1378             info->dwThreadId  = (DWORD)reply->tid;
1379             info->hProcess    = reply->phandle;
1380             info->hThread     = reply->thandle;
1381             success           = reply->success;
1382         }
1383     }
1384     SERVER_END_REQ;
1385
1386     if (ret && !success)  /* new process failed to start */
1387     {
1388         DWORD exitcode;
1389         if (GetExitCodeProcess( info->hProcess, &exitcode )) SetLastError( exitcode );
1390         CloseHandle( info->hThread );
1391         CloseHandle( info->hProcess );
1392         ret = FALSE;
1393     }
1394     CloseHandle( process_info );
1395     return ret;
1396 }
1397
1398
1399 /***********************************************************************
1400  *           create_vdm_process
1401  *
1402  * Create a new VDM process for a 16-bit or DOS application.
1403  */
1404 static BOOL create_vdm_process( LPCWSTR filename, LPWSTR cmd_line, LPWSTR env,
1405                                 LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
1406                                 BOOL inherit, DWORD flags, LPSTARTUPINFOW startup,
1407                                 LPPROCESS_INFORMATION info, LPCSTR unixdir )
1408 {
1409     static const WCHAR argsW[] = {'%','s',' ','-','-','a','p','p','-','n','a','m','e',' ','"','%','s','"',' ','%','s',0};
1410
1411     BOOL ret;
1412     LPWSTR new_cmd_line = HeapAlloc( GetProcessHeap(), 0,
1413                                      (strlenW(filename) + strlenW(cmd_line) + 30) * sizeof(WCHAR) );
1414
1415     if (!new_cmd_line)
1416     {
1417         SetLastError( ERROR_OUTOFMEMORY );
1418         return FALSE;
1419     }
1420     sprintfW( new_cmd_line, argsW, winevdmW, filename, cmd_line );
1421     ret = create_process( 0, winevdmW, new_cmd_line, env, psa, tsa, inherit,
1422                           flags, startup, info, unixdir );
1423     HeapFree( GetProcessHeap(), 0, new_cmd_line );
1424     return ret;
1425 }
1426
1427
1428 /***********************************************************************
1429  *           create_cmd_process
1430  *
1431  * Create a new cmd shell process for a .BAT file.
1432  */
1433 static BOOL create_cmd_process( LPCWSTR filename, LPWSTR cmd_line, LPVOID env,
1434                                 LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
1435                                 BOOL inherit, DWORD flags, LPSTARTUPINFOW startup,
1436                                 LPPROCESS_INFORMATION info, LPCWSTR cur_dir )
1437
1438 {
1439     static const WCHAR comspecW[] = {'C','O','M','S','P','E','C',0};
1440     static const WCHAR slashcW[] = {' ','/','c',' ',0};
1441     WCHAR comspec[MAX_PATH];
1442     WCHAR *newcmdline;
1443     BOOL ret;
1444
1445     if (!GetEnvironmentVariableW( comspecW, comspec, sizeof(comspec)/sizeof(WCHAR) ))
1446         return FALSE;
1447     if (!(newcmdline = HeapAlloc( GetProcessHeap(), 0,
1448                                   (strlenW(comspec) + 4 + strlenW(cmd_line) + 1) * sizeof(WCHAR))))
1449         return FALSE;
1450
1451     strcpyW( newcmdline, comspec );
1452     strcatW( newcmdline, slashcW );
1453     strcatW( newcmdline, cmd_line );
1454     ret = CreateProcessW( comspec, newcmdline, psa, tsa, inherit,
1455                           flags, env, cur_dir, startup, info );
1456     HeapFree( GetProcessHeap(), 0, newcmdline );
1457     return ret;
1458 }
1459
1460
1461 /*************************************************************************
1462  *               get_file_name
1463  *
1464  * Helper for CreateProcess: retrieve the file name to load from the
1465  * app name and command line. Store the file name in buffer, and
1466  * return a possibly modified command line.
1467  * Also returns a handle to the opened file if it's a Windows binary.
1468  */
1469 static LPWSTR get_file_name( LPCWSTR appname, LPWSTR cmdline, LPWSTR buffer,
1470                              int buflen, HANDLE *handle )
1471 {
1472     static const WCHAR quotesW[] = {'"','%','s','"',0};
1473
1474     WCHAR *name, *pos, *ret = NULL;
1475     const WCHAR *p;
1476
1477     /* if we have an app name, everything is easy */
1478
1479     if (appname)
1480     {
1481         /* use the unmodified app name as file name */
1482         lstrcpynW( buffer, appname, buflen );
1483         *handle = open_exe_file( buffer );
1484         if (!(ret = cmdline) || !cmdline[0])
1485         {
1486             /* no command-line, create one */
1487             if ((ret = HeapAlloc( GetProcessHeap(), 0, (strlenW(appname) + 3) * sizeof(WCHAR) )))
1488                 sprintfW( ret, quotesW, appname );
1489         }
1490         return ret;
1491     }
1492
1493     if (!cmdline)
1494     {
1495         SetLastError( ERROR_INVALID_PARAMETER );
1496         return NULL;
1497     }
1498
1499     /* first check for a quoted file name */
1500
1501     if ((cmdline[0] == '"') && ((p = strchrW( cmdline + 1, '"' ))))
1502     {
1503         int len = p - cmdline - 1;
1504         /* extract the quoted portion as file name */
1505         if (!(name = HeapAlloc( GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR) ))) return NULL;
1506         memcpy( name, cmdline + 1, len * sizeof(WCHAR) );
1507         name[len] = 0;
1508
1509         if (find_exe_file( name, buffer, buflen, handle ))
1510             ret = cmdline;  /* no change necessary */
1511         goto done;
1512     }
1513
1514     /* now try the command-line word by word */
1515
1516     if (!(name = HeapAlloc( GetProcessHeap(), 0, (strlenW(cmdline) + 1) * sizeof(WCHAR) )))
1517         return NULL;
1518     pos = name;
1519     p = cmdline;
1520
1521     while (*p)
1522     {
1523         do *pos++ = *p++; while (*p && *p != ' ');
1524         *pos = 0;
1525         if (find_exe_file( name, buffer, buflen, handle ))
1526         {
1527             ret = cmdline;
1528             break;
1529         }
1530     }
1531
1532     if (!ret || !strchrW( name, ' ' )) goto done;  /* no change necessary */
1533
1534     /* now build a new command-line with quotes */
1535
1536     if (!(ret = HeapAlloc( GetProcessHeap(), 0, (strlenW(cmdline) + 3) * sizeof(WCHAR) )))
1537         goto done;
1538     sprintfW( ret, quotesW, name );
1539     strcatW( ret, p );
1540
1541  done:
1542     HeapFree( GetProcessHeap(), 0, name );
1543     return ret;
1544 }
1545
1546
1547 /**********************************************************************
1548  *       CreateProcessA          (KERNEL32.@)
1549  */
1550 BOOL WINAPI CreateProcessA( LPCSTR app_name, LPSTR cmd_line, LPSECURITY_ATTRIBUTES process_attr,
1551                             LPSECURITY_ATTRIBUTES thread_attr, BOOL inherit,
1552                             DWORD flags, LPVOID env, LPCSTR cur_dir,
1553                             LPSTARTUPINFOA startup_info, LPPROCESS_INFORMATION info )
1554 {
1555     BOOL ret;
1556     UNICODE_STRING app_nameW, cmd_lineW, cur_dirW, desktopW, titleW;
1557     STARTUPINFOW infoW;
1558
1559     if (app_name) RtlCreateUnicodeStringFromAsciiz( &app_nameW, app_name );
1560     else app_nameW.Buffer = NULL;
1561     if (cmd_line) RtlCreateUnicodeStringFromAsciiz( &cmd_lineW, cmd_line );
1562     else cmd_lineW.Buffer = NULL;
1563     if (cur_dir) RtlCreateUnicodeStringFromAsciiz( &cur_dirW, cur_dir );
1564     else cur_dirW.Buffer = NULL;
1565     if (startup_info->lpDesktop) RtlCreateUnicodeStringFromAsciiz( &desktopW, startup_info->lpDesktop );
1566     else desktopW.Buffer = NULL;
1567     if (startup_info->lpTitle) RtlCreateUnicodeStringFromAsciiz( &titleW, startup_info->lpTitle );
1568     else titleW.Buffer = NULL;
1569
1570     memcpy( &infoW, startup_info, sizeof(infoW) );
1571     infoW.lpDesktop = desktopW.Buffer;
1572     infoW.lpTitle = titleW.Buffer;
1573
1574     if (startup_info->lpReserved)
1575       FIXME("StartupInfo.lpReserved is used, please report (%s)\n",
1576             debugstr_a(startup_info->lpReserved));
1577
1578     ret = CreateProcessW( app_nameW.Buffer,  cmd_lineW.Buffer, process_attr, thread_attr,
1579                           inherit, flags, env, cur_dirW.Buffer, &infoW, info );
1580
1581     RtlFreeUnicodeString( &app_nameW );
1582     RtlFreeUnicodeString( &cmd_lineW );
1583     RtlFreeUnicodeString( &cur_dirW );
1584     RtlFreeUnicodeString( &desktopW );
1585     RtlFreeUnicodeString( &titleW );
1586     return ret;
1587 }
1588
1589
1590 /**********************************************************************
1591  *       CreateProcessW          (KERNEL32.@)
1592  */
1593 BOOL WINAPI CreateProcessW( LPCWSTR app_name, LPWSTR cmd_line, LPSECURITY_ATTRIBUTES process_attr,
1594                             LPSECURITY_ATTRIBUTES thread_attr, BOOL inherit, DWORD flags,
1595                             LPVOID env, LPCWSTR cur_dir, LPSTARTUPINFOW startup_info,
1596                             LPPROCESS_INFORMATION info )
1597 {
1598     BOOL retv = FALSE;
1599     HANDLE hFile = 0;
1600     const char *unixdir = NULL;
1601     DOS_FULL_NAME full_dir;
1602     WCHAR name[MAX_PATH];
1603     WCHAR *tidy_cmdline, *p, *envW = env;
1604
1605     /* Process the AppName and/or CmdLine to get module name and path */
1606
1607     TRACE("app %s cmdline %s\n", debugstr_w(app_name), debugstr_w(cmd_line) );
1608
1609     if (!(tidy_cmdline = get_file_name( app_name, cmd_line, name, sizeof(name), &hFile )))
1610         return FALSE;
1611     if (hFile == INVALID_HANDLE_VALUE) goto done;
1612
1613     /* Warn if unsupported features are used */
1614
1615     if (flags & (IDLE_PRIORITY_CLASS | HIGH_PRIORITY_CLASS | REALTIME_PRIORITY_CLASS |
1616                  CREATE_NEW_PROCESS_GROUP | CREATE_SEPARATE_WOW_VDM | CREATE_SHARED_WOW_VDM |
1617                  CREATE_DEFAULT_ERROR_MODE | CREATE_NO_WINDOW |
1618                  PROFILE_USER | PROFILE_KERNEL | PROFILE_SERVER))
1619         WARN("(%s,...): ignoring some flags in %lx\n", debugstr_w(name), flags);
1620
1621     if (cur_dir)
1622     {
1623         if (DOSFS_GetFullName( cur_dir, TRUE, &full_dir )) unixdir = full_dir.long_name;
1624     }
1625     else
1626     {
1627         WCHAR buf[MAX_PATH];
1628         if (GetCurrentDirectoryW(MAX_PATH, buf))
1629         {
1630             if (DOSFS_GetFullName( buf, TRUE, &full_dir )) unixdir = full_dir.long_name;
1631         }
1632     }
1633
1634     if (env && !(flags & CREATE_UNICODE_ENVIRONMENT))  /* convert environment to unicode */
1635     {
1636         char *p = env;
1637         DWORD lenW;
1638
1639         while (*p) p += strlen(p) + 1;
1640         p++;  /* final null */
1641         lenW = MultiByteToWideChar( CP_ACP, 0, env, p - (char*)env, NULL, 0 );
1642         envW = HeapAlloc( GetProcessHeap(), 0, lenW * sizeof(WCHAR) );
1643         MultiByteToWideChar( CP_ACP, 0, env, p - (char*)env, envW, lenW );
1644         flags |= CREATE_UNICODE_ENVIRONMENT;
1645     }
1646
1647     info->hThread = info->hProcess = 0;
1648     info->dwProcessId = info->dwThreadId = 0;
1649
1650     /* Determine executable type */
1651
1652     if (!hFile)  /* builtin exe */
1653     {
1654         TRACE( "starting %s as Winelib app\n", debugstr_w(name) );
1655         retv = create_process( 0, name, tidy_cmdline, envW, process_attr, thread_attr,
1656                                inherit, flags, startup_info, info, unixdir );
1657         goto done;
1658     }
1659
1660     switch( MODULE_GetBinaryType( hFile ))
1661     {
1662     case BINARY_PE_EXE:
1663         TRACE( "starting %s as Win32 binary\n", debugstr_w(name) );
1664         retv = create_process( hFile, name, tidy_cmdline, envW, process_attr, thread_attr,
1665                                inherit, flags, startup_info, info, unixdir );
1666         break;
1667     case BINARY_WIN16:
1668     case BINARY_DOS:
1669         TRACE( "starting %s as Win16/DOS binary\n", debugstr_w(name) );
1670         retv = create_vdm_process( name, tidy_cmdline, envW, process_attr, thread_attr,
1671                                    inherit, flags, startup_info, info, unixdir );
1672         break;
1673     case BINARY_OS216:
1674         FIXME( "%s is OS/2 binary, not supported\n", debugstr_w(name) );
1675         SetLastError( ERROR_BAD_EXE_FORMAT );
1676         break;
1677     case BINARY_PE_DLL:
1678         TRACE( "not starting %s since it is a dll\n", debugstr_w(name) );
1679         SetLastError( ERROR_BAD_EXE_FORMAT );
1680         break;
1681     case BINARY_UNIX_LIB:
1682         TRACE( "%s is a Unix library, starting as Winelib app\n", debugstr_w(name) );
1683         retv = create_process( hFile, name, tidy_cmdline, envW, process_attr, thread_attr,
1684                                inherit, flags, startup_info, info, unixdir );
1685         break;
1686     case BINARY_UNKNOWN:
1687         /* check for .com or .bat extension */
1688         if ((p = strrchrW( name, '.' )))
1689         {
1690             if (!strcmpiW( p, comW ))
1691             {
1692                 TRACE( "starting %s as DOS binary\n", debugstr_w(name) );
1693                 retv = create_vdm_process( name, tidy_cmdline, envW, process_attr, thread_attr,
1694                                            inherit, flags, startup_info, info, unixdir );
1695                 break;
1696             }
1697             if (!strcmpiW( p, batW ))
1698             {
1699                 TRACE( "starting %s as batch binary\n", debugstr_w(name) );
1700                 retv = create_cmd_process( name, tidy_cmdline, envW, process_attr, thread_attr,
1701                                            inherit, flags, startup_info, info, cur_dir );
1702                 break;
1703             }
1704         }
1705         /* fall through */
1706     case BINARY_UNIX_EXE:
1707         {
1708             /* unknown file, try as unix executable */
1709             DOS_FULL_NAME full_name;
1710
1711             TRACE( "starting %s as Unix binary\n", debugstr_w(name) );
1712
1713             if (DOSFS_GetFullName( name, TRUE, &full_name ))
1714                 retv = (fork_and_exec( full_name.long_name, tidy_cmdline, envW, unixdir ) != -1);
1715         }
1716         break;
1717     }
1718     CloseHandle( hFile );
1719
1720  done:
1721     if (tidy_cmdline != cmd_line) HeapFree( GetProcessHeap(), 0, tidy_cmdline );
1722     if (envW != env) HeapFree( GetProcessHeap(), 0, envW );
1723     return retv;
1724 }
1725
1726
1727 /***********************************************************************
1728  *           wait_input_idle
1729  *
1730  * Wrapper to call WaitForInputIdle USER function
1731  */
1732 typedef DWORD (WINAPI *WaitForInputIdle_ptr)( HANDLE hProcess, DWORD dwTimeOut );
1733
1734 static DWORD wait_input_idle( HANDLE process, DWORD timeout )
1735 {
1736     HMODULE mod = GetModuleHandleA( "user32.dll" );
1737     if (mod)
1738     {
1739         WaitForInputIdle_ptr ptr = (WaitForInputIdle_ptr)GetProcAddress( mod, "WaitForInputIdle" );
1740         if (ptr) return ptr( process, timeout );
1741     }
1742     return 0;
1743 }
1744
1745
1746 /***********************************************************************
1747  *           WinExec   (KERNEL32.@)
1748  */
1749 UINT WINAPI WinExec( LPCSTR lpCmdLine, UINT nCmdShow )
1750 {
1751     PROCESS_INFORMATION info;
1752     STARTUPINFOA startup;
1753     char *cmdline;
1754     UINT ret;
1755
1756     memset( &startup, 0, sizeof(startup) );
1757     startup.cb = sizeof(startup);
1758     startup.dwFlags = STARTF_USESHOWWINDOW;
1759     startup.wShowWindow = nCmdShow;
1760
1761     /* cmdline needs to be writeable for CreateProcess */
1762     if (!(cmdline = HeapAlloc( GetProcessHeap(), 0, strlen(lpCmdLine)+1 ))) return 0;
1763     strcpy( cmdline, lpCmdLine );
1764
1765     if (CreateProcessA( NULL, cmdline, NULL, NULL, FALSE,
1766                         0, NULL, NULL, &startup, &info ))
1767     {
1768         /* Give 30 seconds to the app to come up */
1769         if (wait_input_idle( info.hProcess, 30000 ) == WAIT_FAILED)
1770             WARN("WaitForInputIdle failed: Error %ld\n", GetLastError() );
1771         ret = 33;
1772         /* Close off the handles */
1773         CloseHandle( info.hThread );
1774         CloseHandle( info.hProcess );
1775     }
1776     else if ((ret = GetLastError()) >= 32)
1777     {
1778         FIXME("Strange error set by CreateProcess: %d\n", ret );
1779         ret = 11;
1780     }
1781     HeapFree( GetProcessHeap(), 0, cmdline );
1782     return ret;
1783 }
1784
1785
1786 /**********************************************************************
1787  *          LoadModule    (KERNEL32.@)
1788  */
1789 HINSTANCE WINAPI LoadModule( LPCSTR name, LPVOID paramBlock )
1790 {
1791     LOADPARAMS *params = (LOADPARAMS *)paramBlock;
1792     PROCESS_INFORMATION info;
1793     STARTUPINFOA startup;
1794     HINSTANCE hInstance;
1795     LPSTR cmdline, p;
1796     char filename[MAX_PATH];
1797     BYTE len;
1798
1799     if (!name) return (HINSTANCE)ERROR_FILE_NOT_FOUND;
1800
1801     if (!SearchPathA( NULL, name, ".exe", sizeof(filename), filename, NULL ) &&
1802         !SearchPathA( NULL, name, NULL, sizeof(filename), filename, NULL ))
1803         return (HINSTANCE)GetLastError();
1804
1805     len = (BYTE)params->lpCmdLine[0];
1806     if (!(cmdline = HeapAlloc( GetProcessHeap(), 0, strlen(filename) + len + 2 )))
1807         return (HINSTANCE)ERROR_NOT_ENOUGH_MEMORY;
1808
1809     strcpy( cmdline, filename );
1810     p = cmdline + strlen(cmdline);
1811     *p++ = ' ';
1812     memcpy( p, params->lpCmdLine + 1, len );
1813     p[len] = 0;
1814
1815     memset( &startup, 0, sizeof(startup) );
1816     startup.cb = sizeof(startup);
1817     if (params->lpCmdShow)
1818     {
1819         startup.dwFlags = STARTF_USESHOWWINDOW;
1820         startup.wShowWindow = params->lpCmdShow[1];
1821     }
1822
1823     if (CreateProcessA( filename, cmdline, NULL, NULL, FALSE, 0,
1824                         params->lpEnvAddress, NULL, &startup, &info ))
1825     {
1826         /* Give 30 seconds to the app to come up */
1827         if (wait_input_idle( info.hProcess, 30000 ) == WAIT_FAILED)
1828             WARN("WaitForInputIdle failed: Error %ld\n", GetLastError() );
1829         hInstance = (HINSTANCE)33;
1830         /* Close off the handles */
1831         CloseHandle( info.hThread );
1832         CloseHandle( info.hProcess );
1833     }
1834     else if ((hInstance = (HINSTANCE)GetLastError()) >= (HINSTANCE)32)
1835     {
1836         FIXME("Strange error set by CreateProcess: %p\n", hInstance );
1837         hInstance = (HINSTANCE)11;
1838     }
1839
1840     HeapFree( GetProcessHeap(), 0, cmdline );
1841     return hInstance;
1842 }
1843
1844
1845 /******************************************************************************
1846  *           TerminateProcess   (KERNEL32.@)
1847  */
1848 BOOL WINAPI TerminateProcess( HANDLE handle, DWORD exit_code )
1849 {
1850     NTSTATUS status = NtTerminateProcess( handle, exit_code );
1851     if (status) SetLastError( RtlNtStatusToDosError(status) );
1852     return !status;
1853 }
1854
1855
1856 /***********************************************************************
1857  *           ExitProcess   (KERNEL32.@)
1858  */
1859 void WINAPI ExitProcess( DWORD status )
1860 {
1861     LdrShutdownProcess();
1862     SERVER_START_REQ( terminate_process )
1863     {
1864         /* send the exit code to the server */
1865         req->handle    = GetCurrentProcess();
1866         req->exit_code = status;
1867         wine_server_call( req );
1868     }
1869     SERVER_END_REQ;
1870     exit( status );
1871 }
1872
1873
1874 /***********************************************************************
1875  * GetExitCodeProcess [KERNEL32.@]
1876  *
1877  * Gets termination status of specified process
1878  *
1879  * RETURNS
1880  *   Success: TRUE
1881  *   Failure: FALSE
1882  */
1883 BOOL WINAPI GetExitCodeProcess(
1884     HANDLE hProcess,    /* [in] handle to the process */
1885     LPDWORD lpExitCode) /* [out] address to receive termination status */
1886 {
1887     BOOL ret;
1888     SERVER_START_REQ( get_process_info )
1889     {
1890         req->handle = hProcess;
1891         ret = !wine_server_call_err( req );
1892         if (ret && lpExitCode) *lpExitCode = reply->exit_code;
1893     }
1894     SERVER_END_REQ;
1895     return ret;
1896 }
1897
1898
1899 /***********************************************************************
1900  *           SetErrorMode   (KERNEL32.@)
1901  */
1902 UINT WINAPI SetErrorMode( UINT mode )
1903 {
1904     UINT old = process_error_mode;
1905     process_error_mode = mode;
1906     return old;
1907 }
1908
1909
1910 /**********************************************************************
1911  * TlsAlloc [KERNEL32.@]  Allocates a TLS index.
1912  *
1913  * Allocates a thread local storage index
1914  *
1915  * RETURNS
1916  *    Success: TLS Index
1917  *    Failure: 0xFFFFFFFF
1918  */
1919 DWORD WINAPI TlsAlloc( void )
1920 {
1921     DWORD index;
1922
1923     RtlAcquirePebLock();
1924     index = RtlFindClearBitsAndSet( NtCurrentTeb()->Peb->TlsBitmap, 1, 0 );
1925     if (index != ~0UL) NtCurrentTeb()->TlsSlots[index] = 0; /* clear the value */
1926     else SetLastError( ERROR_NO_MORE_ITEMS );
1927     RtlReleasePebLock();
1928     return index;
1929 }
1930
1931
1932 /**********************************************************************
1933  * TlsFree [KERNEL32.@]  Releases a TLS index.
1934  *
1935  * Releases a thread local storage index, making it available for reuse
1936  *
1937  * RETURNS
1938  *    Success: TRUE
1939  *    Failure: FALSE
1940  */
1941 BOOL WINAPI TlsFree(
1942     DWORD index) /* [in] TLS Index to free */
1943 {
1944     BOOL ret;
1945
1946     RtlAcquirePebLock();
1947     ret = RtlAreBitsSet( NtCurrentTeb()->Peb->TlsBitmap, index, 1 );
1948     if (ret)
1949     {
1950         RtlClearBits( NtCurrentTeb()->Peb->TlsBitmap, index, 1 );
1951         NtSetInformationThread( GetCurrentThread(), ThreadZeroTlsCell, &index, sizeof(index) );
1952     }
1953     else SetLastError( ERROR_INVALID_PARAMETER );
1954     RtlReleasePebLock();
1955     return TRUE;
1956 }
1957
1958
1959 /**********************************************************************
1960  * TlsGetValue [KERNEL32.@]  Gets value in a thread's TLS slot
1961  *
1962  * RETURNS
1963  *    Success: Value stored in calling thread's TLS slot for index
1964  *    Failure: 0 and GetLastError returns NO_ERROR
1965  */
1966 LPVOID WINAPI TlsGetValue(
1967     DWORD index) /* [in] TLS index to retrieve value for */
1968 {
1969     if (index >= NtCurrentTeb()->Peb->TlsBitmap->SizeOfBitMap)
1970     {
1971         SetLastError( ERROR_INVALID_PARAMETER );
1972         return NULL;
1973     }
1974     SetLastError( ERROR_SUCCESS );
1975     return NtCurrentTeb()->TlsSlots[index];
1976 }
1977
1978
1979 /**********************************************************************
1980  * TlsSetValue [KERNEL32.@]  Stores a value in the thread's TLS slot.
1981  *
1982  * RETURNS
1983  *    Success: TRUE
1984  *    Failure: FALSE
1985  */
1986 BOOL WINAPI TlsSetValue(
1987     DWORD index,  /* [in] TLS index to set value for */
1988     LPVOID value) /* [in] Value to be stored */
1989 {
1990     if (index >= NtCurrentTeb()->Peb->TlsBitmap->SizeOfBitMap)
1991     {
1992         SetLastError( ERROR_INVALID_PARAMETER );
1993         return FALSE;
1994     }
1995     NtCurrentTeb()->TlsSlots[index] = value;
1996     return TRUE;
1997 }
1998
1999
2000 /***********************************************************************
2001  *           GetProcessFlags    (KERNEL32.@)
2002  */
2003 DWORD WINAPI GetProcessFlags( DWORD processid )
2004 {
2005     IMAGE_NT_HEADERS *nt;
2006     DWORD flags = 0;
2007
2008     if (processid && processid != GetCurrentProcessId()) return 0;
2009
2010     if ((nt = RtlImageNtHeader( NtCurrentTeb()->Peb->ImageBaseAddress )))
2011     {
2012         if (nt->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_CUI)
2013             flags |= PDB32_CONSOLE_PROC;
2014     }
2015     if (!AreFileApisANSI()) flags |= PDB32_FILE_APIS_OEM;
2016     if (IsDebuggerPresent()) flags |= PDB32_DEBUGGED;
2017     return flags;
2018 }
2019
2020
2021 /***********************************************************************
2022  *           GetProcessDword    (KERNEL.485)
2023  *           GetProcessDword    (KERNEL32.18)
2024  * 'Of course you cannot directly access Windows internal structures'
2025  */
2026 DWORD WINAPI GetProcessDword( DWORD dwProcessID, INT offset )
2027 {
2028     DWORD               x, y;
2029     STARTUPINFOW        siw;
2030
2031     TRACE("(%ld, %d)\n", dwProcessID, offset );
2032
2033     if (dwProcessID && dwProcessID != GetCurrentProcessId())
2034     {
2035         ERR("%d: process %lx not accessible\n", offset, dwProcessID);
2036         return 0;
2037     }
2038
2039     switch ( offset )
2040     {
2041     case GPD_APP_COMPAT_FLAGS:
2042         return GetAppCompatFlags16(0);
2043     case GPD_LOAD_DONE_EVENT:
2044         return 0;
2045     case GPD_HINSTANCE16:
2046         return GetTaskDS16();
2047     case GPD_WINDOWS_VERSION:
2048         return GetExeVersion16();
2049     case GPD_THDB:
2050         return (DWORD)NtCurrentTeb() - 0x10 /* FIXME */;
2051     case GPD_PDB:
2052         return (DWORD)NtCurrentTeb()->Peb;
2053     case GPD_STARTF_SHELLDATA: /* return stdoutput handle from startupinfo ??? */
2054         GetStartupInfoW(&siw);
2055         return (DWORD)siw.hStdOutput;
2056     case GPD_STARTF_HOTKEY: /* return stdinput handle from startupinfo ??? */
2057         GetStartupInfoW(&siw);
2058         return (DWORD)siw.hStdInput;
2059     case GPD_STARTF_SHOWWINDOW:
2060         GetStartupInfoW(&siw);
2061         return siw.wShowWindow;
2062     case GPD_STARTF_SIZE:
2063         GetStartupInfoW(&siw);
2064         x = siw.dwXSize;
2065         if ( (INT)x == CW_USEDEFAULT ) x = CW_USEDEFAULT16;
2066         y = siw.dwYSize;
2067         if ( (INT)y == CW_USEDEFAULT ) y = CW_USEDEFAULT16;
2068         return MAKELONG( x, y );
2069     case GPD_STARTF_POSITION:
2070         GetStartupInfoW(&siw);
2071         x = siw.dwX;
2072         if ( (INT)x == CW_USEDEFAULT ) x = CW_USEDEFAULT16;
2073         y = siw.dwY;
2074         if ( (INT)y == CW_USEDEFAULT ) y = CW_USEDEFAULT16;
2075         return MAKELONG( x, y );
2076     case GPD_STARTF_FLAGS:
2077         GetStartupInfoW(&siw);
2078         return siw.dwFlags;
2079     case GPD_PARENT:
2080         return 0;
2081     case GPD_FLAGS:
2082         return GetProcessFlags(0);
2083     case GPD_USERDATA:
2084         return process_dword;
2085     default:
2086         ERR("Unknown offset %d\n", offset );
2087         return 0;
2088     }
2089 }
2090
2091 /***********************************************************************
2092  *           SetProcessDword    (KERNEL.484)
2093  * 'Of course you cannot directly access Windows internal structures'
2094  */
2095 void WINAPI SetProcessDword( DWORD dwProcessID, INT offset, DWORD value )
2096 {
2097     TRACE("(%ld, %d)\n", dwProcessID, offset );
2098
2099     if (dwProcessID && dwProcessID != GetCurrentProcessId())
2100     {
2101         ERR("%d: process %lx not accessible\n", offset, dwProcessID);
2102         return;
2103     }
2104
2105     switch ( offset )
2106     {
2107     case GPD_APP_COMPAT_FLAGS:
2108     case GPD_LOAD_DONE_EVENT:
2109     case GPD_HINSTANCE16:
2110     case GPD_WINDOWS_VERSION:
2111     case GPD_THDB:
2112     case GPD_PDB:
2113     case GPD_STARTF_SHELLDATA:
2114     case GPD_STARTF_HOTKEY:
2115     case GPD_STARTF_SHOWWINDOW:
2116     case GPD_STARTF_SIZE:
2117     case GPD_STARTF_POSITION:
2118     case GPD_STARTF_FLAGS:
2119     case GPD_PARENT:
2120     case GPD_FLAGS:
2121         ERR("Not allowed to modify offset %d\n", offset );
2122         break;
2123     case GPD_USERDATA:
2124         process_dword = value;
2125         break;
2126     default:
2127         ERR("Unknown offset %d\n", offset );
2128         break;
2129     }
2130 }
2131
2132
2133 /***********************************************************************
2134  *           ExitProcess   (KERNEL.466)
2135  */
2136 void WINAPI ExitProcess16( WORD status )
2137 {
2138     DWORD count;
2139     ReleaseThunkLock( &count );
2140     ExitProcess( status );
2141 }
2142
2143
2144 /*********************************************************************
2145  *           OpenProcess   (KERNEL32.@)
2146  */
2147 HANDLE WINAPI OpenProcess( DWORD access, BOOL inherit, DWORD id )
2148 {
2149     HANDLE ret = 0;
2150     SERVER_START_REQ( open_process )
2151     {
2152         req->pid     = id;
2153         req->access  = access;
2154         req->inherit = inherit;
2155         if (!wine_server_call_err( req )) ret = reply->handle;
2156     }
2157     SERVER_END_REQ;
2158     return ret;
2159 }
2160
2161
2162 /*********************************************************************
2163  *           MapProcessHandle   (KERNEL.483)
2164  */
2165 DWORD WINAPI MapProcessHandle( HANDLE handle )
2166 {
2167     DWORD ret = 0;
2168     SERVER_START_REQ( get_process_info )
2169     {
2170         req->handle = handle;
2171         if (!wine_server_call_err( req )) ret = reply->pid;
2172     }
2173     SERVER_END_REQ;
2174     return ret;
2175 }
2176
2177
2178 /*********************************************************************
2179  *           CloseW32Handle (KERNEL.474)
2180  *           CloseHandle    (KERNEL32.@)
2181  */
2182 BOOL WINAPI CloseHandle( HANDLE handle )
2183 {
2184     NTSTATUS status;
2185
2186     /* stdio handles need special treatment */
2187     if ((handle == (HANDLE)STD_INPUT_HANDLE) ||
2188         (handle == (HANDLE)STD_OUTPUT_HANDLE) ||
2189         (handle == (HANDLE)STD_ERROR_HANDLE))
2190         handle = GetStdHandle( (DWORD)handle );
2191
2192     if (is_console_handle(handle))
2193         return CloseConsoleHandle(handle);
2194
2195     status = NtClose( handle );
2196     if (status) SetLastError( RtlNtStatusToDosError(status) );
2197     return !status;
2198 }
2199
2200
2201 /*********************************************************************
2202  *           GetHandleInformation   (KERNEL32.@)
2203  */
2204 BOOL WINAPI GetHandleInformation( HANDLE handle, LPDWORD flags )
2205 {
2206     BOOL ret;
2207     SERVER_START_REQ( set_handle_info )
2208     {
2209         req->handle = handle;
2210         req->flags  = 0;
2211         req->mask   = 0;
2212         req->fd     = -1;
2213         ret = !wine_server_call_err( req );
2214         if (ret && flags) *flags = reply->old_flags;
2215     }
2216     SERVER_END_REQ;
2217     return ret;
2218 }
2219
2220
2221 /*********************************************************************
2222  *           SetHandleInformation   (KERNEL32.@)
2223  */
2224 BOOL WINAPI SetHandleInformation( HANDLE handle, DWORD mask, DWORD flags )
2225 {
2226     BOOL ret;
2227     SERVER_START_REQ( set_handle_info )
2228     {
2229         req->handle = handle;
2230         req->flags  = flags;
2231         req->mask   = mask;
2232         req->fd     = -1;
2233         ret = !wine_server_call_err( req );
2234     }
2235     SERVER_END_REQ;
2236     return ret;
2237 }
2238
2239
2240 /*********************************************************************
2241  *           DuplicateHandle   (KERNEL32.@)
2242  */
2243 BOOL WINAPI DuplicateHandle( HANDLE source_process, HANDLE source,
2244                              HANDLE dest_process, HANDLE *dest,
2245                              DWORD access, BOOL inherit, DWORD options )
2246 {
2247     NTSTATUS status;
2248
2249     if (is_console_handle(source))
2250     {
2251         /* FIXME: this test is not sufficient, we need to test process ids, not handles */
2252         if (source_process != dest_process ||
2253             source_process != GetCurrentProcess())
2254         {
2255             SetLastError(ERROR_INVALID_PARAMETER);
2256             return FALSE;
2257         }
2258         *dest = DuplicateConsoleHandle( source, access, inherit, options );
2259         return (*dest != INVALID_HANDLE_VALUE);
2260     }
2261     status = NtDuplicateObject( source_process, source, dest_process, dest,
2262                                 access, inherit ? OBJ_INHERIT : 0, options );
2263     if (status) SetLastError( RtlNtStatusToDosError(status) );
2264     return !status;
2265 }
2266
2267
2268 /***********************************************************************
2269  *           ConvertToGlobalHandle   (KERNEL.476)
2270  *           ConvertToGlobalHandle  (KERNEL32.@)
2271  */
2272 HANDLE WINAPI ConvertToGlobalHandle(HANDLE hSrc)
2273 {
2274     HANDLE ret = INVALID_HANDLE_VALUE;
2275     DuplicateHandle( GetCurrentProcess(), hSrc, GetCurrentProcess(), &ret, 0, FALSE,
2276                      DUP_HANDLE_MAKE_GLOBAL | DUP_HANDLE_SAME_ACCESS | DUP_HANDLE_CLOSE_SOURCE );
2277     return ret;
2278 }
2279
2280
2281 /***********************************************************************
2282  *           SetHandleContext   (KERNEL32.@)
2283  */
2284 BOOL WINAPI SetHandleContext(HANDLE hnd,DWORD context)
2285 {
2286     FIXME("(%p,%ld), stub. In case this got called by WSOCK32/WS2_32: "
2287           "the external WINSOCK DLLs won't work with WINE, don't use them.\n",hnd,context);
2288     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2289     return FALSE;
2290 }
2291
2292
2293 /***********************************************************************
2294  *           GetHandleContext   (KERNEL32.@)
2295  */
2296 DWORD WINAPI GetHandleContext(HANDLE hnd)
2297 {
2298     FIXME("(%p), stub. In case this got called by WSOCK32/WS2_32: "
2299           "the external WINSOCK DLLs won't work with WINE, don't use them.\n",hnd);
2300     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2301     return 0;
2302 }
2303
2304
2305 /***********************************************************************
2306  *           CreateSocketHandle   (KERNEL32.@)
2307  */
2308 HANDLE WINAPI CreateSocketHandle(void)
2309 {
2310     FIXME("(), stub. In case this got called by WSOCK32/WS2_32: "
2311           "the external WINSOCK DLLs won't work with WINE, don't use them.\n");
2312     SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2313     return INVALID_HANDLE_VALUE;
2314 }
2315
2316
2317 /***********************************************************************
2318  *           SetPriorityClass   (KERNEL32.@)
2319  */
2320 BOOL WINAPI SetPriorityClass( HANDLE hprocess, DWORD priorityclass )
2321 {
2322     BOOL ret;
2323     SERVER_START_REQ( set_process_info )
2324     {
2325         req->handle   = hprocess;
2326         req->priority = priorityclass;
2327         req->mask     = SET_PROCESS_INFO_PRIORITY;
2328         ret = !wine_server_call_err( req );
2329     }
2330     SERVER_END_REQ;
2331     return ret;
2332 }
2333
2334
2335 /***********************************************************************
2336  *           GetPriorityClass   (KERNEL32.@)
2337  */
2338 DWORD WINAPI GetPriorityClass(HANDLE hprocess)
2339 {
2340     DWORD ret = 0;
2341     SERVER_START_REQ( get_process_info )
2342     {
2343         req->handle = hprocess;
2344         if (!wine_server_call_err( req )) ret = reply->priority;
2345     }
2346     SERVER_END_REQ;
2347     return ret;
2348 }
2349
2350
2351 /***********************************************************************
2352  *          SetProcessAffinityMask   (KERNEL32.@)
2353  */
2354 BOOL WINAPI SetProcessAffinityMask( HANDLE hProcess, DWORD affmask )
2355 {
2356     BOOL ret;
2357     SERVER_START_REQ( set_process_info )
2358     {
2359         req->handle   = hProcess;
2360         req->affinity = affmask;
2361         req->mask     = SET_PROCESS_INFO_AFFINITY;
2362         ret = !wine_server_call_err( req );
2363     }
2364     SERVER_END_REQ;
2365     return ret;
2366 }
2367
2368
2369 /**********************************************************************
2370  *          GetProcessAffinityMask    (KERNEL32.@)
2371  */
2372 BOOL WINAPI GetProcessAffinityMask( HANDLE hProcess,
2373                                       LPDWORD lpProcessAffinityMask,
2374                                       LPDWORD lpSystemAffinityMask )
2375 {
2376     BOOL ret = FALSE;
2377     SERVER_START_REQ( get_process_info )
2378     {
2379         req->handle = hProcess;
2380         if (!wine_server_call_err( req ))
2381         {
2382             if (lpProcessAffinityMask) *lpProcessAffinityMask = reply->process_affinity;
2383             if (lpSystemAffinityMask) *lpSystemAffinityMask = reply->system_affinity;
2384             ret = TRUE;
2385         }
2386     }
2387     SERVER_END_REQ;
2388     return ret;
2389 }
2390
2391
2392 /***********************************************************************
2393  *           GetProcessVersion    (KERNEL32.@)
2394  */
2395 DWORD WINAPI GetProcessVersion( DWORD processid )
2396 {
2397     IMAGE_NT_HEADERS *nt;
2398
2399     if (processid && processid != GetCurrentProcessId())
2400     {
2401         FIXME("should use ReadProcessMemory\n");
2402         return 0;
2403     }
2404     if ((nt = RtlImageNtHeader( NtCurrentTeb()->Peb->ImageBaseAddress )))
2405         return ((nt->OptionalHeader.MajorSubsystemVersion << 16) |
2406                 nt->OptionalHeader.MinorSubsystemVersion);
2407     return 0;
2408 }
2409
2410
2411 /***********************************************************************
2412  *              SetProcessWorkingSetSize        [KERNEL32.@]
2413  * Sets the min/max working set sizes for a specified process.
2414  *
2415  * PARAMS
2416  *    hProcess [I] Handle to the process of interest
2417  *    minset   [I] Specifies minimum working set size
2418  *    maxset   [I] Specifies maximum working set size
2419  *
2420  * RETURNS  STD
2421  */
2422 BOOL WINAPI SetProcessWorkingSetSize(HANDLE hProcess, SIZE_T minset,
2423                                      SIZE_T maxset)
2424 {
2425     FIXME("(%p,%ld,%ld): stub - harmless\n",hProcess,minset,maxset);
2426     if(( minset == (SIZE_T)-1) && (maxset == (SIZE_T)-1)) {
2427         /* Trim the working set to zero */
2428         /* Swap the process out of physical RAM */
2429     }
2430     return TRUE;
2431 }
2432
2433 /***********************************************************************
2434  *           GetProcessWorkingSetSize    (KERNEL32.@)
2435  */
2436 BOOL WINAPI GetProcessWorkingSetSize(HANDLE hProcess, PSIZE_T minset,
2437                                      PSIZE_T maxset)
2438 {
2439     FIXME("(%p,%p,%p): stub\n",hProcess,minset,maxset);
2440     /* 32 MB working set size */
2441     if (minset) *minset = 32*1024*1024;
2442     if (maxset) *maxset = 32*1024*1024;
2443     return TRUE;
2444 }
2445
2446
2447 /***********************************************************************
2448  *           SetProcessShutdownParameters    (KERNEL32.@)
2449  */
2450 BOOL WINAPI SetProcessShutdownParameters(DWORD level, DWORD flags)
2451 {
2452     FIXME("(%08lx, %08lx): partial stub.\n", level, flags);
2453     shutdown_flags = flags;
2454     shutdown_priority = level;
2455     return TRUE;
2456 }
2457
2458
2459 /***********************************************************************
2460  * GetProcessShutdownParameters                 (KERNEL32.@)
2461  *
2462  */
2463 BOOL WINAPI GetProcessShutdownParameters( LPDWORD lpdwLevel, LPDWORD lpdwFlags )
2464 {
2465     *lpdwLevel = shutdown_priority;
2466     *lpdwFlags = shutdown_flags;
2467     return TRUE;
2468 }
2469
2470
2471 /***********************************************************************
2472  *           GetProcessPriorityBoost    (KERNEL32.@)
2473  */
2474 BOOL WINAPI GetProcessPriorityBoost(HANDLE hprocess,PBOOL pDisablePriorityBoost)
2475 {
2476     FIXME("(%p,%p): semi-stub\n", hprocess, pDisablePriorityBoost);
2477     
2478     /* Report that no boost is present.. */
2479     *pDisablePriorityBoost = FALSE;
2480     
2481     return TRUE;
2482 }
2483
2484 /***********************************************************************
2485  *           SetProcessPriorityBoost    (KERNEL32.@)
2486  */
2487 BOOL WINAPI SetProcessPriorityBoost(HANDLE hprocess,BOOL disableboost)
2488 {
2489     FIXME("(%p,%d): stub\n",hprocess,disableboost);
2490     /* Say we can do it. I doubt the program will notice that we don't. */
2491     return TRUE;
2492 }
2493
2494
2495 /***********************************************************************
2496  *              ReadProcessMemory (KERNEL32.@)
2497  */
2498 BOOL WINAPI ReadProcessMemory( HANDLE process, LPCVOID addr, LPVOID buffer, SIZE_T size,
2499                                SIZE_T *bytes_read )
2500 {
2501     NTSTATUS status = NtReadVirtualMemory( process, addr, buffer, size, bytes_read );
2502     if (status) SetLastError( RtlNtStatusToDosError(status) );
2503     return !status;
2504 }
2505
2506
2507 /***********************************************************************
2508  *           WriteProcessMemory                 (KERNEL32.@)
2509  */
2510 BOOL WINAPI WriteProcessMemory( HANDLE process, LPVOID addr, LPCVOID buffer, SIZE_T size,
2511                                 SIZE_T *bytes_written )
2512 {
2513     NTSTATUS status = NtWriteVirtualMemory( process, addr, buffer, size, bytes_written );
2514     if (status) SetLastError( RtlNtStatusToDosError(status) );
2515     return !status;
2516 }
2517
2518
2519 /****************************************************************************
2520  *              FlushInstructionCache (KERNEL32.@)
2521  */
2522 BOOL WINAPI FlushInstructionCache(HANDLE hProcess, LPCVOID lpBaseAddress, SIZE_T dwSize)
2523 {
2524     if (GetVersion() & 0x80000000) return TRUE; /* not NT, always TRUE */
2525     FIXME("(%p,%p,0x%08lx): stub\n",hProcess, lpBaseAddress, dwSize);
2526     return TRUE;
2527 }
2528
2529
2530 /******************************************************************
2531  *              GetProcessIoCounters (KERNEL32.@)
2532  */
2533 BOOL WINAPI GetProcessIoCounters(HANDLE hProcess, PIO_COUNTERS ioc)
2534 {
2535     NTSTATUS    status;
2536
2537     status = NtQueryInformationProcess(hProcess, ProcessIoCounters, 
2538                                        ioc, sizeof(*ioc), NULL);
2539     if (status) SetLastError( RtlNtStatusToDosError(status) );
2540     return !status;
2541 }
2542
2543 /***********************************************************************
2544  * ProcessIdToSessionId   (KERNEL32.@)
2545  * This function is available on Terminal Server 4SP4 and Windows 2000
2546  */
2547 BOOL WINAPI ProcessIdToSessionId( DWORD procid, DWORD *sessionid_ptr )
2548 {
2549     /* According to MSDN, if the calling process is not in a terminal
2550      * services environment, then the sessionid returned is zero.
2551      */
2552     *sessionid_ptr = 0;
2553     return TRUE;
2554 }
2555
2556
2557 /***********************************************************************
2558  *              RegisterServiceProcess (KERNEL.491)
2559  *              RegisterServiceProcess (KERNEL32.@)
2560  *
2561  * A service process calls this function to ensure that it continues to run
2562  * even after a user logged off.
2563  */
2564 DWORD WINAPI RegisterServiceProcess(DWORD dwProcessId, DWORD dwType)
2565 {
2566     /* I don't think that Wine needs to do anything in that function */
2567     return 1; /* success */
2568 }
2569
2570
2571 /**************************************************************************
2572  *              SetFileApisToOEM   (KERNEL32.@)
2573  */
2574 VOID WINAPI SetFileApisToOEM(void)
2575 {
2576     oem_file_apis = TRUE;
2577 }
2578
2579
2580 /**************************************************************************
2581  *              SetFileApisToANSI   (KERNEL32.@)
2582  */
2583 VOID WINAPI SetFileApisToANSI(void)
2584 {
2585     oem_file_apis = FALSE;
2586 }
2587
2588
2589 /******************************************************************************
2590  * AreFileApisANSI [KERNEL32.@]  Determines if file functions are using ANSI
2591  *
2592  * RETURNS
2593  *    TRUE:  Set of file functions is using ANSI code page
2594  *    FALSE: Set of file functions is using OEM code page
2595  */
2596 BOOL WINAPI AreFileApisANSI(void)
2597 {
2598     return !oem_file_apis;
2599 }
2600
2601
2602 /***********************************************************************
2603  *           GetTickCount       (KERNEL32.@)
2604  *
2605  * Returns the number of milliseconds, modulo 2^32, since the start
2606  * of the wineserver.
2607  */
2608 DWORD WINAPI GetTickCount(void)
2609 {
2610     struct timeval t;
2611     gettimeofday( &t, NULL );
2612     return ((t.tv_sec * 1000) + (t.tv_usec / 1000)) - server_startticks;
2613 }
2614
2615
2616 /***********************************************************************
2617  *           GetCurrentProcess   (KERNEL32.@)
2618  */
2619 #undef GetCurrentProcess
2620 HANDLE WINAPI GetCurrentProcess(void)
2621 {
2622     return (HANDLE)0xffffffff;
2623 }