Changed the CreateDC driver entry point to use an HDC instead of a DC
[wine] / dlls / kernel / task.c
1 /*
2  * Task functions
3  *
4  * Copyright 1995 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 <stdarg.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <assert.h>
28 #ifdef HAVE_UNISTD_H
29 # include <unistd.h>
30 #endif
31
32 #include "windef.h"
33 #include "winbase.h"
34 #include "wingdi.h"
35 #include "winnt.h"
36 #include "wownt32.h"
37 #include "winuser.h"
38
39 #include "wine/winbase16.h"
40 #include "drive.h"
41 #include "file.h"
42 #include "module.h"
43 #include "winternl.h"
44 #include "wine/server.h"
45 #include "stackframe.h"
46 #include "thread.h"
47 #include "toolhelp.h"
48 #include "kernel_private.h"
49
50 #include "wine/debug.h"
51
52 WINE_DEFAULT_DEBUG_CHANNEL(task);
53 WINE_DECLARE_DEBUG_CHANNEL(relay);
54 WINE_DECLARE_DEBUG_CHANNEL(toolhelp);
55
56 #include "pshpack1.h"
57
58 /* Segment containing MakeProcInstance() thunks */
59 typedef struct
60 {
61     WORD  next;       /* Selector of next segment */
62     WORD  magic;      /* Thunks signature */
63     WORD  unused;
64     WORD  free;       /* Head of the free list */
65     WORD  thunks[4];  /* Each thunk is 4 words long */
66 } THUNKS;
67
68 #include "poppack.h"
69
70 #define THUNK_MAGIC  ('P' | ('T' << 8))
71
72   /* Min. number of thunks allocated when creating a new segment */
73 #define MIN_THUNKS  32
74
75 #define TDB_MAGIC    ('T' | ('D' << 8))
76
77 static THHOOK DefaultThhook;
78 THHOOK *pThhook = &DefaultThhook;
79
80 #define hFirstTask   (pThhook->HeadTDB)
81 #define hLockedTask  (pThhook->LockTDB)
82
83 static UINT16 nTaskCount = 0;
84
85 static HTASK16 initial_task;
86
87 /***********************************************************************
88  *           TASK_InstallTHHook
89  */
90 void TASK_InstallTHHook( THHOOK *pNewThhook )
91 {
92      THHOOK *pOldThhook = pThhook;
93
94      pThhook = pNewThhook? pNewThhook : &DefaultThhook;
95
96      *pThhook = *pOldThhook;
97 }
98
99 /***********************************************************************
100  *           TASK_GetPtr
101  */
102 static TDB *TASK_GetPtr( HTASK16 hTask )
103 {
104     return GlobalLock16( hTask );
105 }
106
107
108 /***********************************************************************
109  *           TASK_GetCurrent
110  */
111 TDB *TASK_GetCurrent(void)
112 {
113     return TASK_GetPtr( GetCurrentTask() );
114 }
115
116
117 /***********************************************************************
118  *           TASK_LinkTask
119  */
120 static void TASK_LinkTask( HTASK16 hTask )
121 {
122     HTASK16 *prevTask;
123     TDB *pTask;
124
125     if (!(pTask = TASK_GetPtr( hTask ))) return;
126     prevTask = &hFirstTask;
127     while (*prevTask)
128     {
129         TDB *prevTaskPtr = TASK_GetPtr( *prevTask );
130         if (prevTaskPtr->priority >= pTask->priority) break;
131         prevTask = &prevTaskPtr->hNext;
132     }
133     pTask->hNext = *prevTask;
134     *prevTask = hTask;
135     nTaskCount++;
136 }
137
138
139 /***********************************************************************
140  *           TASK_UnlinkTask
141  */
142 static void TASK_UnlinkTask( HTASK16 hTask )
143 {
144     HTASK16 *prevTask;
145     TDB *pTask;
146
147     prevTask = &hFirstTask;
148     while (*prevTask && (*prevTask != hTask))
149     {
150         pTask = TASK_GetPtr( *prevTask );
151         prevTask = &pTask->hNext;
152     }
153     if (*prevTask)
154     {
155         pTask = TASK_GetPtr( *prevTask );
156         *prevTask = pTask->hNext;
157         pTask->hNext = 0;
158         nTaskCount--;
159     }
160 }
161
162
163 /***********************************************************************
164  *           TASK_CreateThunks
165  *
166  * Create a thunk free-list in segment 'handle', starting from offset 'offset'
167  * and containing 'count' entries.
168  */
169 static void TASK_CreateThunks( HGLOBAL16 handle, WORD offset, WORD count )
170 {
171     int i;
172     WORD free;
173     THUNKS *pThunk;
174
175     pThunk = (THUNKS *)((BYTE *)GlobalLock16( handle ) + offset);
176     pThunk->next = 0;
177     pThunk->magic = THUNK_MAGIC;
178     pThunk->free = (int)&pThunk->thunks - (int)pThunk;
179     free = pThunk->free;
180     for (i = 0; i < count-1; i++)
181     {
182         free += 8;  /* Offset of next thunk */
183         pThunk->thunks[4*i] = free;
184     }
185     pThunk->thunks[4*i] = 0;  /* Last thunk */
186 }
187
188
189 /***********************************************************************
190  *           TASK_AllocThunk
191  *
192  * Allocate a thunk for MakeProcInstance().
193  */
194 static SEGPTR TASK_AllocThunk(void)
195 {
196     TDB *pTask;
197     THUNKS *pThunk;
198     WORD sel, base;
199
200     if (!(pTask = TASK_GetCurrent())) return 0;
201     sel = pTask->hCSAlias;
202     pThunk = (THUNKS *)&pTask->thunks;
203     base = (char *)pThunk - (char *)pTask;
204     while (!pThunk->free)
205     {
206         sel = pThunk->next;
207         if (!sel)  /* Allocate a new segment */
208         {
209             sel = GLOBAL_Alloc( GMEM_FIXED, sizeof(THUNKS) + (MIN_THUNKS-1)*8,
210                                 pTask->hPDB, WINE_LDT_FLAGS_CODE );
211             if (!sel) return (SEGPTR)0;
212             TASK_CreateThunks( sel, 0, MIN_THUNKS );
213             pThunk->next = sel;
214         }
215         pThunk = (THUNKS *)GlobalLock16( sel );
216         base = 0;
217     }
218     base += pThunk->free;
219     pThunk->free = *(WORD *)((BYTE *)pThunk + pThunk->free);
220     return MAKESEGPTR( sel, base );
221 }
222
223
224 /***********************************************************************
225  *           TASK_FreeThunk
226  *
227  * Free a MakeProcInstance() thunk.
228  */
229 static BOOL TASK_FreeThunk( SEGPTR thunk )
230 {
231     TDB *pTask;
232     THUNKS *pThunk;
233     WORD sel, base;
234
235     if (!(pTask = TASK_GetCurrent())) return 0;
236     sel = pTask->hCSAlias;
237     pThunk = (THUNKS *)&pTask->thunks;
238     base = (char *)pThunk - (char *)pTask;
239     while (sel && (sel != HIWORD(thunk)))
240     {
241         sel = pThunk->next;
242         pThunk = (THUNKS *)GlobalLock16( sel );
243         base = 0;
244     }
245     if (!sel) return FALSE;
246     *(WORD *)((BYTE *)pThunk + LOWORD(thunk) - base) = pThunk->free;
247     pThunk->free = LOWORD(thunk) - base;
248     return TRUE;
249 }
250
251
252 /***********************************************************************
253  *           TASK_Create
254  *
255  * NOTE: This routine might be called by a Win32 thread. Thus, we need
256  *       to be careful to protect global data structures. We do this
257  *       by entering the Win16Lock while linking the task into the
258  *       global task list.
259  */
260 static TDB *TASK_Create( NE_MODULE *pModule, UINT16 cmdShow, TEB *teb, LPCSTR cmdline, BYTE len )
261 {
262     HTASK16 hTask;
263     TDB *pTask;
264     FARPROC16 proc;
265     HMODULE16 hModule = pModule ? pModule->self : 0;
266
267       /* Allocate the task structure */
268
269     hTask = GlobalAlloc16( GMEM_FIXED | GMEM_ZEROINIT, sizeof(TDB) );
270     if (!hTask) return NULL;
271     pTask = TASK_GetPtr( hTask );
272     FarSetOwner16( hTask, hModule );
273
274     /* Fill the task structure */
275
276     pTask->hSelf = hTask;
277
278     if (teb && teb->tibflags & TEBF_WIN32)
279     {
280         pTask->flags        |= TDBF_WIN32;
281         pTask->hInstance     = hModule;
282         pTask->hPrevInstance = 0;
283         /* NOTE: for 16-bit tasks, the instance handles are updated later on
284            in NE_InitProcess */
285     }
286
287     pTask->version       = pModule ? pModule->expected_version : 0x0400;
288     pTask->hModule       = hModule;
289     pTask->hParent       = GetCurrentTask();
290     pTask->magic         = TDB_MAGIC;
291     pTask->nCmdShow      = cmdShow;
292     pTask->teb           = teb;
293     pTask->curdrive      = DRIVE_GetCurrentDrive() | 0x80;
294     strcpy( pTask->curdir, "\\" );
295     WideCharToMultiByte(CP_ACP, 0, DRIVE_GetDosCwd(DRIVE_GetCurrentDrive()), -1,
296                         pTask->curdir + 1, sizeof(pTask->curdir) - 1, NULL, NULL);
297     pTask->curdir[sizeof(pTask->curdir) - 1] = 0; /* ensure 0 termination */
298
299       /* Create the thunks block */
300
301     TASK_CreateThunks( hTask, (char *)&pTask->thunks - (char *)pTask, 7 );
302
303       /* Copy the module name */
304
305     if (hModule)
306     {
307         char name[10];
308         GetModuleName16( hModule, name, sizeof(name) );
309         strncpy( pTask->module_name, name, sizeof(pTask->module_name) );
310         pTask->compat_flags = GetProfileIntA( "Compatibility", name, 0 );
311     }
312
313       /* Allocate a selector for the PDB */
314
315     pTask->hPDB = GLOBAL_CreateBlock( GMEM_FIXED, &pTask->pdb, sizeof(PDB16),
316                                       hModule, WINE_LDT_FLAGS_DATA );
317
318       /* Fill the PDB */
319
320     pTask->pdb.int20 = 0x20cd;
321     pTask->pdb.dispatcher[0] = 0x9a;  /* ljmp */
322     proc = GetProcAddress16( GetModuleHandle16("KERNEL"), "DOS3Call" );
323     memcpy( &pTask->pdb.dispatcher[1], &proc, sizeof(proc) );
324     pTask->pdb.savedint22 = 0;
325     pTask->pdb.savedint23 = 0;
326     pTask->pdb.savedint24 = 0;
327     pTask->pdb.fileHandlesPtr =
328         MAKESEGPTR( GlobalHandleToSel16(pTask->hPDB), (int)&((PDB16 *)0)->fileHandles );
329     pTask->pdb.hFileHandles = 0;
330     memset( pTask->pdb.fileHandles, 0xff, sizeof(pTask->pdb.fileHandles) );
331     /* FIXME: should we make a copy of the environment? */
332     pTask->pdb.environment    = SELECTOROF(GetDOSEnvironment16());
333     pTask->pdb.nbFiles        = 20;
334
335     /* Fill the command line */
336
337     if (!cmdline)
338     {
339         cmdline = GetCommandLineA();
340         /* remove the first word (program name) */
341         if (*cmdline == '"')
342             if (!(cmdline = strchr( cmdline+1, '"' ))) cmdline = GetCommandLineA();
343         while (*cmdline && (*cmdline != ' ') && (*cmdline != '\t')) cmdline++;
344         while ((*cmdline == ' ') || (*cmdline == '\t')) cmdline++;
345         len = strlen(cmdline);
346     }
347     if (len >= sizeof(pTask->pdb.cmdLine)) len = sizeof(pTask->pdb.cmdLine)-1;
348     pTask->pdb.cmdLine[0] = len;
349     memcpy( pTask->pdb.cmdLine + 1, cmdline, len );
350     /* pTask->pdb.cmdLine[len+1] = 0; */
351
352     TRACE("cmdline='%.*s' task=%04x\n", len, cmdline, hTask );
353
354       /* Allocate a code segment alias for the TDB */
355
356     pTask->hCSAlias = GLOBAL_CreateBlock( GMEM_FIXED, (void *)pTask,
357                                           sizeof(TDB), pTask->hPDB, WINE_LDT_FLAGS_CODE );
358
359       /* Default DTA overwrites command line */
360
361     pTask->dta = MAKESEGPTR( pTask->hPDB, (int)&pTask->pdb.cmdLine - (int)&pTask->pdb );
362
363     /* Create scheduler event for 16-bit tasks */
364
365     if ( !(pTask->flags & TDBF_WIN32) )
366         NtCreateEvent( &pTask->hEvent, EVENT_ALL_ACCESS, NULL, TRUE, FALSE );
367
368     /* Enter task handle into thread */
369
370     if (teb) teb->htask16 = hTask;
371     if (!initial_task) initial_task = hTask;
372
373     return pTask;
374 }
375
376
377 /***********************************************************************
378  *           TASK_DeleteTask
379  */
380 static void TASK_DeleteTask( HTASK16 hTask )
381 {
382     TDB *pTask;
383     HGLOBAL16 hPDB;
384
385     if (!(pTask = TASK_GetPtr( hTask ))) return;
386     hPDB = pTask->hPDB;
387
388     pTask->magic = 0xdead; /* invalidate signature */
389
390     /* Free the selector aliases */
391
392     GLOBAL_FreeBlock( pTask->hCSAlias );
393     GLOBAL_FreeBlock( pTask->hPDB );
394
395     /* Free the task module */
396
397     FreeModule16( pTask->hModule );
398
399     /* Free the task structure itself */
400
401     GlobalFree16( hTask );
402
403     /* Free all memory used by this task (including the 32-bit stack, */
404     /* the environment block and the thunk segments). */
405
406     GlobalFreeAll16( hPDB );
407 }
408
409
410 /***********************************************************************
411  *           TASK_CreateMainTask
412  *
413  * Create a task for the main (32-bit) process.
414  */
415 void TASK_CreateMainTask(void)
416 {
417     TDB *pTask;
418     STARTUPINFOA startup_info;
419     UINT cmdShow = 1; /* SW_SHOWNORMAL but we don't want to include winuser.h here */
420
421     GetStartupInfoA( &startup_info );
422     if (startup_info.dwFlags & STARTF_USESHOWWINDOW) cmdShow = startup_info.wShowWindow;
423     pTask = TASK_Create( NULL, cmdShow, NtCurrentTeb(), NULL, 0 );
424     if (!pTask)
425     {
426         ERR("could not create task for main process\n");
427         ExitProcess(1);
428     }
429
430     /* Add the task to the linked list */
431     /* (no need to get the win16 lock, we are the only thread at this point) */
432     TASK_LinkTask( pTask->hSelf );
433 }
434
435
436 /* startup routine for a new 16-bit thread */
437 static DWORD CALLBACK task_start( TDB *pTask )
438 {
439     DWORD ret;
440
441     NtCurrentTeb()->tibflags &= ~TEBF_WIN32;
442     NtCurrentTeb()->htask16 = pTask->hSelf;
443
444     _EnterWin16Lock();
445     TASK_LinkTask( pTask->hSelf );
446     pTask->teb = NtCurrentTeb();
447     ret = NE_StartTask();
448     _LeaveWin16Lock();
449     return ret;
450 }
451
452
453 /***********************************************************************
454  *           TASK_SpawnTask
455  *
456  * Spawn a new 16-bit task.
457  */
458 HTASK16 TASK_SpawnTask( NE_MODULE *pModule, WORD cmdShow,
459                         LPCSTR cmdline, BYTE len, HANDLE *hThread )
460 {
461     TDB *pTask;
462
463     if (!(pTask = TASK_Create( pModule, cmdShow, NULL, cmdline, len ))) return 0;
464     if (!(*hThread = CreateThread( NULL, 0, (LPTHREAD_START_ROUTINE)task_start, pTask, 0, NULL )))
465     {
466         TASK_DeleteTask( pTask->hSelf );
467         return 0;
468     }
469     return pTask->hSelf;
470 }
471
472
473 /***********************************************************************
474  *           TASK_GetTaskFromThread
475  */
476 HTASK16 TASK_GetTaskFromThread( DWORD thread )
477 {
478     TDB *p = TASK_GetPtr( hFirstTask );
479     while (p)
480     {
481         if (p->teb->ClientId.UniqueThread == (HANDLE)thread) return p->hSelf;
482         p = TASK_GetPtr( p->hNext );
483     }
484     return 0;
485 }
486
487
488 /***********************************************************************
489  *           TASK_CallTaskSignalProc
490  */
491 static void TASK_CallTaskSignalProc( UINT16 uCode, HANDLE16 hTaskOrModule )
492 {
493     WORD args[5];
494     TDB *pTask = TASK_GetCurrent();
495
496     if ( !pTask || !pTask->userhandler ) return;
497
498     args[4] = hTaskOrModule;
499     args[3] = uCode;
500     args[2] = 0;
501     args[1] = pTask->hInstance;
502     args[0] = pTask->hQueue;
503     WOWCallback16Ex( (DWORD)pTask->userhandler, WCB16_PASCAL, sizeof(args), args, NULL );
504 }
505
506
507 /***********************************************************************
508  *           TASK_ExitTask
509  */
510 void TASK_ExitTask(void)
511 {
512     TDB *pTask;
513     DWORD lockCount;
514
515     /* Enter the Win16Lock to protect global data structures */
516     _EnterWin16Lock();
517
518     pTask = TASK_GetCurrent();
519     if ( !pTask )
520     {
521         _LeaveWin16Lock();
522         return;
523     }
524
525     TRACE("Killing task %04x\n", pTask->hSelf );
526
527     /* Perform USER cleanup */
528
529     TASK_CallTaskSignalProc( USIG16_TERMINATION, pTask->hSelf );
530
531     /* Remove the task from the list to be sure we never switch back to it */
532     TASK_UnlinkTask( pTask->hSelf );
533
534     if (!nTaskCount || (nTaskCount == 1 && hFirstTask == initial_task))
535     {
536         TRACE("this is the last task, exiting\n" );
537         ExitKernel16();
538     }
539
540     pTask->nEvents = 0;
541
542     if ( hLockedTask == pTask->hSelf )
543         hLockedTask = 0;
544
545     TASK_DeleteTask( pTask->hSelf );
546
547     /* ... and completely release the Win16Lock, just in case. */
548     ReleaseThunkLock( &lockCount );
549 }
550
551
552 /***********************************************************************
553  *           ExitKernel (KERNEL.2)
554  *
555  * Clean-up everything and exit the Wine process.
556  */
557 void WINAPI ExitKernel16(void)
558 {
559     WriteOutProfiles16();
560     TerminateProcess( GetCurrentProcess(), 0 );
561 }
562
563
564 /***********************************************************************
565  *           InitTask  (KERNEL.91)
566  *
567  * Called by the application startup code.
568  */
569 void WINAPI InitTask16( CONTEXT86 *context )
570 {
571     TDB *pTask;
572     INSTANCEDATA *pinstance;
573     SEGPTR ptr;
574
575     context->Eax = 0;
576     if (!(pTask = TASK_GetCurrent())) return;
577
578     /* Note: we need to trust that BX/CX contain the stack/heap sizes,
579        as some apps, notably Visual Basic apps, *modify* the heap/stack
580        size of the instance data segment before calling InitTask() */
581
582     /* Initialize the INSTANCEDATA structure */
583     pinstance = MapSL( MAKESEGPTR(CURRENT_DS, 0) );
584     pinstance->stackmin    = OFFSETOF( NtCurrentTeb()->cur_stack ) + sizeof( STACK16FRAME );
585     pinstance->stackbottom = pinstance->stackmin; /* yup, that's right. Confused me too. */
586     pinstance->stacktop    = ( pinstance->stackmin > LOWORD(context->Ebx) ?
587                                pinstance->stackmin - LOWORD(context->Ebx) : 0 ) + 150;
588
589     /* Initialize the local heap */
590     if (LOWORD(context->Ecx))
591         LocalInit16( GlobalHandleToSel16(pTask->hInstance), 0, LOWORD(context->Ecx) );
592
593     /* Initialize implicitly loaded DLLs */
594     NE_InitializeDLLs( pTask->hModule );
595     NE_DllProcessAttach( pTask->hModule );
596
597     /* Registers on return are:
598      * ax     1 if OK, 0 on error
599      * cx     stack limit in bytes
600      * dx     cmdShow parameter
601      * si     instance handle of the previous instance
602      * di     instance handle of the new task
603      * es:bx  pointer to command line inside PSP
604      *
605      * 0 (=%bp) is pushed on the stack
606      */
607     ptr = stack16_push( sizeof(WORD) );
608     *(WORD *)MapSL(ptr) = 0;
609     context->Esp -= 2;
610
611     context->Eax = 1;
612
613     if (!pTask->pdb.cmdLine[0]) context->Ebx = 0x80;
614     else
615     {
616         LPBYTE p = &pTask->pdb.cmdLine[1];
617         while ((*p == ' ') || (*p == '\t')) p++;
618         context->Ebx = 0x80 + (p - pTask->pdb.cmdLine);
619     }
620     context->Ecx   = pinstance->stacktop;
621     context->Edx   = pTask->nCmdShow;
622     context->Esi   = (DWORD)pTask->hPrevInstance;
623     context->Edi   = (DWORD)pTask->hInstance;
624     context->SegEs = (WORD)pTask->hPDB;
625 }
626
627
628 /***********************************************************************
629  *           WaitEvent  (KERNEL.30)
630  */
631 BOOL16 WINAPI WaitEvent16( HTASK16 hTask )
632 {
633     TDB *pTask;
634
635     if (!hTask) hTask = GetCurrentTask();
636     pTask = TASK_GetPtr( hTask );
637
638     if (pTask->flags & TDBF_WIN32)
639     {
640         FIXME("called for Win32 thread (%04lx)!\n", GetCurrentThreadId());
641         return TRUE;
642     }
643
644     if (pTask->nEvents > 0)
645     {
646         pTask->nEvents--;
647         return FALSE;
648     }
649
650     if (pTask->teb == NtCurrentTeb())
651     {
652         DWORD lockCount;
653
654         NtResetEvent( pTask->hEvent, NULL );
655         ReleaseThunkLock( &lockCount );
656         SYSLEVEL_CheckNotLevel( 1 );
657         WaitForSingleObject( pTask->hEvent, INFINITE );
658         RestoreThunkLock( lockCount );
659         if (pTask->nEvents > 0) pTask->nEvents--;
660     }
661     else FIXME("for other task %04x cur=%04x\n",pTask->hSelf,GetCurrentTask());
662
663     return TRUE;
664 }
665
666
667 /***********************************************************************
668  *           PostEvent  (KERNEL.31)
669  */
670 void WINAPI PostEvent16( HTASK16 hTask )
671 {
672     TDB *pTask;
673
674     if (!hTask) hTask = GetCurrentTask();
675     if (!(pTask = TASK_GetPtr( hTask ))) return;
676
677     if (pTask->flags & TDBF_WIN32)
678     {
679         FIXME("called for Win32 thread (%04lx)!\n", (DWORD)pTask->teb->ClientId.UniqueThread );
680         return;
681     }
682
683     pTask->nEvents++;
684
685     if (pTask->nEvents == 1) NtSetEvent( pTask->hEvent, NULL );
686 }
687
688
689 /***********************************************************************
690  *           SetPriority  (KERNEL.32)
691  */
692 void WINAPI SetPriority16( HTASK16 hTask, INT16 delta )
693 {
694     TDB *pTask;
695     INT16 newpriority;
696
697     if (!hTask) hTask = GetCurrentTask();
698     if (!(pTask = TASK_GetPtr( hTask ))) return;
699     newpriority = pTask->priority + delta;
700     if (newpriority < -32) newpriority = -32;
701     else if (newpriority > 15) newpriority = 15;
702
703     pTask->priority = newpriority + 1;
704     TASK_UnlinkTask( pTask->hSelf );
705     TASK_LinkTask( pTask->hSelf );
706     pTask->priority--;
707 }
708
709
710 /***********************************************************************
711  *           LockCurrentTask  (KERNEL.33)
712  */
713 HTASK16 WINAPI LockCurrentTask16( BOOL16 bLock )
714 {
715     if (bLock) hLockedTask = GetCurrentTask();
716     else hLockedTask = 0;
717     return hLockedTask;
718 }
719
720
721 /***********************************************************************
722  *           IsTaskLocked  (KERNEL.122)
723  */
724 HTASK16 WINAPI IsTaskLocked16(void)
725 {
726     return hLockedTask;
727 }
728
729
730 /***********************************************************************
731  *           OldYield  (KERNEL.117)
732  */
733 void WINAPI OldYield16(void)
734 {
735    DWORD count;
736
737    ReleaseThunkLock(&count);
738    RestoreThunkLock(count);
739 }
740
741 /***********************************************************************
742  *           WIN32_OldYield  (KERNEL.447)
743  */
744 void WINAPI WIN32_OldYield16(void)
745 {
746    DWORD count;
747
748    ReleaseThunkLock(&count);
749    RestoreThunkLock(count);
750 }
751
752 /***********************************************************************
753  *           DirectedYield  (KERNEL.150)
754  */
755 void WINAPI DirectedYield16( HTASK16 hTask )
756 {
757     OldYield16();
758 }
759
760 /***********************************************************************
761  *           Yield  (KERNEL.29)
762  */
763 void WINAPI Yield16(void)
764 {
765     TDB *pCurTask = TASK_GetCurrent();
766
767     if (pCurTask && pCurTask->hQueue)
768     {
769         HMODULE mod = GetModuleHandleA( "user32.dll" );
770         if (mod)
771         {
772             FARPROC proc = GetProcAddress( mod, "UserYield16" );
773             if (proc)
774             {
775                 proc();
776                 return;
777             }
778         }
779     }
780     OldYield16();
781 }
782
783 /***********************************************************************
784  *           KERNEL_490  (KERNEL.490)
785  */
786 HTASK16 WINAPI KERNEL_490( HTASK16 someTask )
787 {
788     if ( !someTask ) return 0;
789
790     FIXME("(%04x): stub\n", someTask );
791     return 0;
792 }
793
794 /***********************************************************************
795  *           MakeProcInstance  (KERNEL.51)
796  */
797 FARPROC16 WINAPI MakeProcInstance16( FARPROC16 func, HANDLE16 hInstance )
798 {
799     BYTE *thunk,*lfunc;
800     SEGPTR thunkaddr;
801     WORD hInstanceSelector;
802
803     hInstanceSelector = GlobalHandleToSel16(hInstance);
804
805     TRACE("(%08lx, %04x);\n", (DWORD)func, hInstance);
806
807     if (!HIWORD(func)) {
808       /* Win95 actually protects via SEH, but this is better for debugging */
809       WARN("Ouch ! Called with invalid func 0x%08lx !\n", (DWORD)func);
810       return (FARPROC16)0;
811     }
812
813     if ( (GlobalHandleToSel16(CURRENT_DS) != hInstanceSelector)
814       && (hInstance != 0)
815       && (hInstance != 0xffff) )
816     {
817         /* calling MPI with a foreign DSEG is invalid ! */
818         WARN("Problem with hInstance? Got %04x, using %04x instead\n",
819                    hInstance,CURRENT_DS);
820     }
821
822     /* Always use the DSEG that MPI was entered with.
823      * We used to set hInstance to GetTaskDS16(), but this should be wrong
824      * as CURRENT_DS provides the DSEG value we need.
825      * ("calling" DS, *not* "task" DS !) */
826     hInstanceSelector = CURRENT_DS;
827     hInstance = GlobalHandle16(hInstanceSelector);
828
829     /* no thunking for DLLs */
830     if (NE_GetPtr(FarGetOwner16(hInstance))->flags & NE_FFLAGS_LIBMODULE)
831         return func;
832
833     thunkaddr = TASK_AllocThunk();
834     if (!thunkaddr) return (FARPROC16)0;
835     thunk = MapSL( thunkaddr );
836     lfunc = MapSL( (SEGPTR)func );
837
838     TRACE("(%08lx,%04x): got thunk %08lx\n",
839           (DWORD)func, hInstance, (DWORD)thunkaddr );
840     if (((lfunc[0]==0x8c) && (lfunc[1]==0xd8)) || /* movw %ds, %ax */
841         ((lfunc[0]==0x1e) && (lfunc[1]==0x58))    /* pushw %ds, popw %ax */
842     ) {
843         WARN("This was the (in)famous \"thunk useless\" warning. We thought we have to overwrite with nop;nop;, but this isn't true.\n");
844     }
845
846     *thunk++ = 0xb8;    /* movw instance, %ax */
847     *thunk++ = (BYTE)(hInstanceSelector & 0xff);
848     *thunk++ = (BYTE)(hInstanceSelector >> 8);
849     *thunk++ = 0xea;    /* ljmp func */
850     *(DWORD *)thunk = (DWORD)func;
851     return (FARPROC16)thunkaddr;
852     /* CX reg indicates if thunkaddr != NULL, implement if needed */
853 }
854
855
856 /***********************************************************************
857  *           FreeProcInstance  (KERNEL.52)
858  */
859 void WINAPI FreeProcInstance16( FARPROC16 func )
860 {
861     TRACE("(%08lx)\n", (DWORD)func );
862     TASK_FreeThunk( (SEGPTR)func );
863 }
864
865 /**********************************************************************
866  *          TASK_GetCodeSegment
867  *
868  * Helper function for GetCodeHandle/GetCodeInfo: Retrieve the module
869  * and logical segment number of a given code segment.
870  *
871  * 'proc' either *is* already a pair of module handle and segment number,
872  * in which case there's nothing to do.  Otherwise, it is a pointer to
873  * a function, and we need to retrieve the code segment.  If the pointer
874  * happens to point to a thunk, we'll retrieve info about the code segment
875  * where the function pointed to by the thunk resides, not the thunk itself.
876  *
877  * FIXME: if 'proc' is a SNOOP16 return stub, we should retrieve info about
878  *        the function the snoop code will return to ...
879  *
880  */
881 static BOOL TASK_GetCodeSegment( FARPROC16 proc, NE_MODULE **ppModule,
882                                  SEGTABLEENTRY **ppSeg, int *pSegNr )
883 {
884     NE_MODULE *pModule = NULL;
885     SEGTABLEENTRY *pSeg = NULL;
886     int segNr=0;
887
888     /* Try pair of module handle / segment number */
889     pModule = (NE_MODULE *) GlobalLock16( HIWORD( proc ) );
890     if ( pModule && pModule->magic == IMAGE_OS2_SIGNATURE )
891     {
892         segNr = LOWORD( proc );
893         if ( segNr && segNr <= pModule->seg_count )
894             pSeg = NE_SEG_TABLE( pModule ) + segNr-1;
895     }
896
897     /* Try thunk or function */
898     else
899     {
900         BYTE *thunk = MapSL( (SEGPTR)proc );
901         WORD selector;
902
903         if ((thunk[0] == 0xb8) && (thunk[3] == 0xea))
904             selector = thunk[6] + (thunk[7] << 8);
905         else
906             selector = HIWORD( proc );
907
908         pModule = NE_GetPtr( GlobalHandle16( selector ) );
909         pSeg = pModule? NE_SEG_TABLE( pModule ) : NULL;
910
911         if ( pModule )
912             for ( segNr = 1; segNr <= pModule->seg_count; segNr++, pSeg++ )
913                 if ( GlobalHandleToSel16(pSeg->hSeg) == selector )
914                     break;
915
916         if ( pModule && segNr > pModule->seg_count )
917             pSeg = NULL;
918     }
919
920     /* Abort if segment not found */
921
922     if ( !pModule || !pSeg )
923         return FALSE;
924
925     /* Return segment data */
926
927     if ( ppModule ) *ppModule = pModule;
928     if ( ppSeg    ) *ppSeg    = pSeg;
929     if ( pSegNr   ) *pSegNr   = segNr;
930
931     return TRUE;
932 }
933
934 /**********************************************************************
935  *          GetCodeHandle    (KERNEL.93)
936  */
937 HANDLE16 WINAPI GetCodeHandle16( FARPROC16 proc )
938 {
939     SEGTABLEENTRY *pSeg;
940
941     if ( !TASK_GetCodeSegment( proc, NULL, &pSeg, NULL ) )
942         return (HANDLE16)0;
943
944     return pSeg->hSeg;
945 }
946
947 /**********************************************************************
948  *          GetCodeInfo    (KERNEL.104)
949  */
950 BOOL16 WINAPI GetCodeInfo16( FARPROC16 proc, SEGINFO *segInfo )
951 {
952     NE_MODULE *pModule;
953     SEGTABLEENTRY *pSeg;
954     int segNr;
955
956     if ( !TASK_GetCodeSegment( proc, &pModule, &pSeg, &segNr ) )
957         return FALSE;
958
959     /* Fill in segment information */
960
961     segInfo->offSegment = pSeg->filepos;
962     segInfo->cbSegment  = pSeg->size;
963     segInfo->flags      = pSeg->flags;
964     segInfo->cbAlloc    = pSeg->minsize;
965     segInfo->h          = pSeg->hSeg;
966     segInfo->alignShift = pModule->alignment;
967
968     if ( segNr == pModule->dgroup )
969         segInfo->cbAlloc += pModule->heap_size + pModule->stack_size;
970
971     /* Return module handle in %es */
972
973     CURRENT_STACK16->es = GlobalHandleToSel16( pModule->self );
974
975     return TRUE;
976 }
977
978
979 /**********************************************************************
980  *          DefineHandleTable    (KERNEL.94)
981  */
982 BOOL16 WINAPI DefineHandleTable16( WORD wOffset )
983 {
984     FIXME("(%04x): stub ?\n", wOffset);
985     return TRUE;
986 }
987
988
989 /***********************************************************************
990  *           SetTaskQueue  (KERNEL.34)
991  */
992 HQUEUE16 WINAPI SetTaskQueue16( HTASK16 hTask, HQUEUE16 hQueue )
993 {
994     HQUEUE16 hPrev;
995     TDB *pTask;
996
997     if (!hTask) hTask = GetCurrentTask();
998     if (!(pTask = TASK_GetPtr( hTask ))) return 0;
999
1000     hPrev = pTask->hQueue;
1001     pTask->hQueue = hQueue;
1002
1003     return hPrev;
1004 }
1005
1006
1007 /***********************************************************************
1008  *           GetTaskQueue  (KERNEL.35)
1009  */
1010 HQUEUE16 WINAPI GetTaskQueue16( HTASK16 hTask )
1011 {
1012     TDB *pTask;
1013
1014     if (!hTask) hTask = GetCurrentTask();
1015     if (!(pTask = TASK_GetPtr( hTask ))) return 0;
1016     return pTask->hQueue;
1017 }
1018
1019 /***********************************************************************
1020  *           SetThreadQueue  (KERNEL.463)
1021  */
1022 HQUEUE16 WINAPI SetThreadQueue16( DWORD thread, HQUEUE16 hQueue )
1023 {
1024     HQUEUE16 oldQueue = NtCurrentTeb()->queue;
1025
1026     if (thread && thread != GetCurrentThreadId())
1027     {
1028         FIXME( "not supported on other thread %04lx\n", thread );
1029         return 0;
1030     }
1031     NtCurrentTeb()->queue = hQueue;
1032     if ( GetTaskQueue16( NtCurrentTeb()->htask16 ) == oldQueue )
1033         SetTaskQueue16( NtCurrentTeb()->htask16, hQueue );
1034     return oldQueue;
1035 }
1036
1037 /***********************************************************************
1038  *           GetThreadQueue  (KERNEL.464)
1039  */
1040 HQUEUE16 WINAPI GetThreadQueue16( DWORD thread )
1041 {
1042     if (thread && thread != GetCurrentThreadId())
1043     {
1044         FIXME( "not supported on other thread %04lx\n", thread );
1045         return 0;
1046     }
1047     return NtCurrentTeb()->queue;
1048 }
1049
1050 /***********************************************************************
1051  *           SetFastQueue  (KERNEL.624)
1052  */
1053 VOID WINAPI SetFastQueue16( DWORD thread, HQUEUE16 hQueue )
1054 {
1055     if (!thread || thread == GetCurrentThreadId())
1056         NtCurrentTeb()->queue = hQueue;
1057     else
1058         FIXME( "not supported on other thread %04lx\n", thread );
1059 }
1060
1061 /***********************************************************************
1062  *           GetFastQueue  (KERNEL.625)
1063  */
1064 HQUEUE16 WINAPI GetFastQueue16( void )
1065 {
1066     HQUEUE16 ret = NtCurrentTeb()->queue;
1067
1068     if (!ret) FIXME("(): should initialize thread-local queue, expect failure!\n" );
1069     return ret;
1070 }
1071
1072 /***********************************************************************
1073  *           SwitchStackTo   (KERNEL.108)
1074  */
1075 void WINAPI SwitchStackTo16( WORD seg, WORD ptr, WORD top )
1076 {
1077     STACK16FRAME *oldFrame, *newFrame;
1078     INSTANCEDATA *pData;
1079     UINT16 copySize;
1080
1081     if (!(pData = (INSTANCEDATA *)GlobalLock16( seg ))) return;
1082     TRACE("old=%04x:%04x new=%04x:%04x\n",
1083           SELECTOROF( NtCurrentTeb()->cur_stack ),
1084           OFFSETOF( NtCurrentTeb()->cur_stack ), seg, ptr );
1085
1086     /* Save the old stack */
1087
1088     oldFrame = CURRENT_STACK16;
1089     /* pop frame + args and push bp */
1090     pData->old_ss_sp   = NtCurrentTeb()->cur_stack + sizeof(STACK16FRAME)
1091                            + 2 * sizeof(WORD);
1092     *(WORD *)MapSL(pData->old_ss_sp) = oldFrame->bp;
1093     pData->stacktop    = top;
1094     pData->stackmin    = ptr;
1095     pData->stackbottom = ptr;
1096
1097     /* Switch to the new stack */
1098
1099     /* Note: we need to take the 3 arguments into account; otherwise,
1100      * the stack will underflow upon return from this function.
1101      */
1102     copySize = oldFrame->bp - OFFSETOF(pData->old_ss_sp);
1103     copySize += 3 * sizeof(WORD) + sizeof(STACK16FRAME);
1104     NtCurrentTeb()->cur_stack = MAKESEGPTR( seg, ptr - copySize );
1105     newFrame = CURRENT_STACK16;
1106
1107     /* Copy the stack frame and the local variables to the new stack */
1108
1109     memmove( newFrame, oldFrame, copySize );
1110     newFrame->bp = ptr;
1111     *(WORD *)MapSL( MAKESEGPTR( seg, ptr ) ) = 0;  /* clear previous bp */
1112 }
1113
1114
1115 /***********************************************************************
1116  *           SwitchStackBack   (KERNEL.109)
1117  */
1118 void WINAPI SwitchStackBack16( CONTEXT86 *context )
1119 {
1120     STACK16FRAME *oldFrame, *newFrame;
1121     INSTANCEDATA *pData;
1122
1123     if (!(pData = (INSTANCEDATA *)GlobalLock16(SELECTOROF(NtCurrentTeb()->cur_stack))))
1124         return;
1125     if (!pData->old_ss_sp)
1126     {
1127         WARN("No previous SwitchStackTo\n" );
1128         return;
1129     }
1130     TRACE("restoring stack %04x:%04x\n",
1131           SELECTOROF(pData->old_ss_sp), OFFSETOF(pData->old_ss_sp) );
1132
1133     oldFrame = CURRENT_STACK16;
1134
1135     /* Pop bp from the previous stack */
1136
1137     context->Ebp = (context->Ebp & ~0xffff) | *(WORD *)MapSL(pData->old_ss_sp);
1138     pData->old_ss_sp += sizeof(WORD);
1139
1140     /* Switch back to the old stack */
1141
1142     NtCurrentTeb()->cur_stack = pData->old_ss_sp - sizeof(STACK16FRAME);
1143     context->SegSs = SELECTOROF(pData->old_ss_sp);
1144     context->Esp   = OFFSETOF(pData->old_ss_sp) - sizeof(DWORD); /*ret addr*/
1145     pData->old_ss_sp = 0;
1146
1147     /* Build a stack frame for the return */
1148
1149     newFrame = CURRENT_STACK16;
1150     newFrame->frame32     = oldFrame->frame32;
1151     newFrame->module_cs   = oldFrame->module_cs;
1152     newFrame->callfrom_ip = oldFrame->callfrom_ip;
1153     newFrame->entry_ip    = oldFrame->entry_ip;
1154 }
1155
1156
1157 /***********************************************************************
1158  *           GetTaskQueueDS  (KERNEL.118)
1159  */
1160 void WINAPI GetTaskQueueDS16(void)
1161 {
1162     CURRENT_STACK16->ds = GlobalHandleToSel16( GetTaskQueue16(0) );
1163 }
1164
1165
1166 /***********************************************************************
1167  *           GetTaskQueueES  (KERNEL.119)
1168  */
1169 void WINAPI GetTaskQueueES16(void)
1170 {
1171     CURRENT_STACK16->es = GlobalHandleToSel16( GetTaskQueue16(0) );
1172 }
1173
1174
1175 /***********************************************************************
1176  *           GetCurrentTask   (KERNEL32.@)
1177  */
1178 HTASK16 WINAPI GetCurrentTask(void)
1179 {
1180     return NtCurrentTeb()->htask16;
1181 }
1182
1183 /***********************************************************************
1184  *           GetCurrentTask   (KERNEL.36)
1185  */
1186 DWORD WINAPI WIN16_GetCurrentTask(void)
1187 {
1188     /* This is the version used by relay code; the first task is */
1189     /* returned in the high word of the result */
1190     return MAKELONG( GetCurrentTask(), hFirstTask );
1191 }
1192
1193
1194 /***********************************************************************
1195  *           GetCurrentPDB   (KERNEL.37)
1196  *
1197  * UNDOC: returns PSP of KERNEL in high word
1198  */
1199 DWORD WINAPI GetCurrentPDB16(void)
1200 {
1201     TDB *pTask;
1202
1203     if (!(pTask = TASK_GetCurrent())) return 0;
1204     return MAKELONG(pTask->hPDB, 0); /* FIXME */
1205 }
1206
1207
1208 /***********************************************************************
1209  *           GetCurPID   (KERNEL.157)
1210  */
1211 DWORD WINAPI GetCurPID16( DWORD unused )
1212 {
1213     return 0;
1214 }
1215
1216
1217 /***********************************************************************
1218  *           GetInstanceData   (KERNEL.54)
1219  */
1220 INT16 WINAPI GetInstanceData16( HINSTANCE16 instance, WORD buffer, INT16 len )
1221 {
1222     char *ptr = (char *)GlobalLock16( instance );
1223     if (!ptr || !len) return 0;
1224     if ((int)buffer + len >= 0x10000) len = 0x10000 - buffer;
1225     memcpy( (char *)GlobalLock16(CURRENT_DS) + buffer, ptr + buffer, len );
1226     return len;
1227 }
1228
1229
1230 /***********************************************************************
1231  *           GetExeVersion   (KERNEL.105)
1232  */
1233 WORD WINAPI GetExeVersion16(void)
1234 {
1235     TDB *pTask;
1236
1237     if (!(pTask = TASK_GetCurrent())) return 0;
1238     return pTask->version;
1239 }
1240
1241
1242 /***********************************************************************
1243  *           SetErrorMode   (KERNEL.107)
1244  */
1245 UINT16 WINAPI SetErrorMode16( UINT16 mode )
1246 {
1247     TDB *pTask;
1248     if (!(pTask = TASK_GetCurrent())) return 0;
1249     pTask->error_mode = mode;
1250     return SetErrorMode( mode );
1251 }
1252
1253
1254 /***********************************************************************
1255  *           GetNumTasks   (KERNEL.152)
1256  */
1257 UINT16 WINAPI GetNumTasks16(void)
1258 {
1259     return nTaskCount;
1260 }
1261
1262
1263 /***********************************************************************
1264  *           GetTaskDS   (KERNEL.155)
1265  *
1266  * Note: this function apparently returns a DWORD with LOWORD == HIWORD.
1267  * I don't think we need to bother with this.
1268  */
1269 HINSTANCE16 WINAPI GetTaskDS16(void)
1270 {
1271     TDB *pTask;
1272
1273     if (!(pTask = TASK_GetCurrent())) return 0;
1274     return GlobalHandleToSel16(pTask->hInstance);
1275 }
1276
1277 /***********************************************************************
1278  *           GetDummyModuleHandleDS   (KERNEL.602)
1279  */
1280 WORD WINAPI GetDummyModuleHandleDS16(void)
1281 {
1282     TDB *pTask;
1283     WORD selector;
1284
1285     if (!(pTask = TASK_GetCurrent())) return 0;
1286     if (!(pTask->flags & TDBF_WIN32)) return 0;
1287     selector = GlobalHandleToSel16( pTask->hModule );
1288     CURRENT_DS = selector;
1289     return selector;
1290 }
1291
1292 /***********************************************************************
1293  *           IsTask   (KERNEL.320)
1294  */
1295 BOOL16 WINAPI IsTask16( HTASK16 hTask )
1296 {
1297     TDB *pTask;
1298
1299     if (!(pTask = TASK_GetPtr( hTask ))) return FALSE;
1300     if (GlobalSize16( hTask ) < sizeof(TDB)) return FALSE;
1301     return (pTask->magic == TDB_MAGIC);
1302 }
1303
1304
1305 /***********************************************************************
1306  *           IsWinOldApTask   (KERNEL.158)
1307  */
1308 BOOL16 WINAPI IsWinOldApTask16( HTASK16 hTask )
1309 {
1310     /* should return bit 0 of byte 0x48 in PSP */
1311     return FALSE;
1312 }
1313
1314 /***********************************************************************
1315  *           SetTaskSignalProc   (KERNEL.38)
1316  */
1317 FARPROC16 WINAPI SetTaskSignalProc( HTASK16 hTask, FARPROC16 proc )
1318 {
1319     TDB *pTask;
1320     FARPROC16 oldProc;
1321
1322     if (!hTask) hTask = GetCurrentTask();
1323     if (!(pTask = TASK_GetPtr( hTask ))) return NULL;
1324     oldProc = pTask->userhandler;
1325     pTask->userhandler = proc;
1326     return oldProc;
1327 }
1328
1329 /***********************************************************************
1330  *           SetSigHandler   (KERNEL.140)
1331  */
1332 WORD WINAPI SetSigHandler16( FARPROC16 newhandler, FARPROC16* oldhandler,
1333                            UINT16 *oldmode, UINT16 newmode, UINT16 flag )
1334 {
1335     FIXME("(%p,%p,%p,%d,%d), unimplemented.\n",
1336           newhandler,oldhandler,oldmode,newmode,flag );
1337
1338     if (flag != 1) return 0;
1339     if (!newmode) newhandler = NULL;  /* Default handler */
1340     if (newmode != 4)
1341     {
1342         TDB *pTask;
1343
1344         if (!(pTask = TASK_GetCurrent())) return 0;
1345         if (oldmode) *oldmode = pTask->signal_flags;
1346         pTask->signal_flags = newmode;
1347         if (oldhandler) *oldhandler = pTask->sighandler;
1348         pTask->sighandler = newhandler;
1349     }
1350     return 0;
1351 }
1352
1353
1354 /***********************************************************************
1355  *           GlobalNotify   (KERNEL.154)
1356  *
1357  * Note that GlobalNotify does _not_ return the old NotifyProc
1358  * -- contrary to LocalNotify !!
1359  */
1360 VOID WINAPI GlobalNotify16( FARPROC16 proc )
1361 {
1362     TDB *pTask;
1363
1364     if (!(pTask = TASK_GetCurrent())) return;
1365     pTask->discardhandler = proc;
1366 }
1367
1368
1369 /***********************************************************************
1370  *           GetExePtrHelper
1371  */
1372 static inline HMODULE16 GetExePtrHelper( HANDLE16 handle, HTASK16 *hTask )
1373 {
1374     char *ptr;
1375     HANDLE16 owner;
1376
1377       /* Check for module handle */
1378
1379     if (!(ptr = GlobalLock16( handle ))) return 0;
1380     if (((NE_MODULE *)ptr)->magic == IMAGE_OS2_SIGNATURE) return handle;
1381
1382       /* Search for this handle inside all tasks */
1383
1384     *hTask = hFirstTask;
1385     while (*hTask)
1386     {
1387         TDB *pTask = TASK_GetPtr( *hTask );
1388         if ((*hTask == handle) ||
1389             (pTask->hInstance == handle) ||
1390             (pTask->hQueue == handle) ||
1391             (pTask->hPDB == handle)) return pTask->hModule;
1392         *hTask = pTask->hNext;
1393     }
1394
1395       /* Check the owner for module handle */
1396
1397     owner = FarGetOwner16( handle );
1398     if (!(ptr = GlobalLock16( owner ))) return 0;
1399     if (((NE_MODULE *)ptr)->magic == IMAGE_OS2_SIGNATURE) return owner;
1400
1401       /* Search for the owner inside all tasks */
1402
1403     *hTask = hFirstTask;
1404     while (*hTask)
1405     {
1406         TDB *pTask = TASK_GetPtr( *hTask );
1407         if ((*hTask == owner) ||
1408             (pTask->hInstance == owner) ||
1409             (pTask->hQueue == owner) ||
1410             (pTask->hPDB == owner)) return pTask->hModule;
1411         *hTask = pTask->hNext;
1412     }
1413
1414     return 0;
1415 }
1416
1417 /***********************************************************************
1418  *           GetExePtr   (KERNEL.133)
1419  */
1420 HMODULE16 WINAPI WIN16_GetExePtr( HANDLE16 handle )
1421 {
1422     HTASK16 hTask = 0;
1423     HMODULE16 hModule = GetExePtrHelper( handle, &hTask );
1424     STACK16FRAME *frame = CURRENT_STACK16;
1425     frame->ecx = hModule;
1426     if (hTask) frame->es = hTask;
1427     return hModule;
1428 }
1429
1430
1431 /***********************************************************************
1432  *           K228   (KERNEL.228)
1433  */
1434 HMODULE16 WINAPI GetExePtr( HANDLE16 handle )
1435 {
1436     HTASK16 hTask = 0;
1437     return GetExePtrHelper( handle, &hTask );
1438 }
1439
1440
1441 /***********************************************************************
1442  *           TaskFirst   (TOOLHELP.63)
1443  */
1444 BOOL16 WINAPI TaskFirst16( TASKENTRY *lpte )
1445 {
1446     lpte->hNext = hFirstTask;
1447     return TaskNext16( lpte );
1448 }
1449
1450
1451 /***********************************************************************
1452  *           TaskNext   (TOOLHELP.64)
1453  */
1454 BOOL16 WINAPI TaskNext16( TASKENTRY *lpte )
1455 {
1456     TDB *pTask;
1457     INSTANCEDATA *pInstData;
1458
1459     TRACE_(toolhelp)("(%p): task=%04x\n", lpte, lpte->hNext );
1460     if (!lpte->hNext) return FALSE;
1461
1462     /* make sure that task and hInstance are valid (skip initial Wine task !) */
1463     while (1) {
1464         pTask = TASK_GetPtr( lpte->hNext );
1465         if (!pTask || pTask->magic != TDB_MAGIC) return FALSE;
1466         if (pTask->hInstance)
1467             break;
1468         lpte->hNext = pTask->hNext;
1469     }
1470     pInstData = MapSL( MAKESEGPTR( GlobalHandleToSel16(pTask->hInstance), 0 ) );
1471     lpte->hTask         = lpte->hNext;
1472     lpte->hTaskParent   = pTask->hParent;
1473     lpte->hInst         = pTask->hInstance;
1474     lpte->hModule       = pTask->hModule;
1475     lpte->wSS           = SELECTOROF( pTask->teb->cur_stack );
1476     lpte->wSP           = OFFSETOF( pTask->teb->cur_stack );
1477     lpte->wStackTop     = pInstData->stacktop;
1478     lpte->wStackMinimum = pInstData->stackmin;
1479     lpte->wStackBottom  = pInstData->stackbottom;
1480     lpte->wcEvents      = pTask->nEvents;
1481     lpte->hQueue        = pTask->hQueue;
1482     lstrcpynA( lpte->szModule, pTask->module_name, sizeof(lpte->szModule) );
1483     lpte->wPSPOffset    = 0x100;  /*??*/
1484     lpte->hNext         = pTask->hNext;
1485     return TRUE;
1486 }
1487
1488
1489 /***********************************************************************
1490  *           TaskFindHandle   (TOOLHELP.65)
1491  */
1492 BOOL16 WINAPI TaskFindHandle16( TASKENTRY *lpte, HTASK16 hTask )
1493 {
1494     lpte->hNext = hTask;
1495     return TaskNext16( lpte );
1496 }
1497
1498
1499 typedef INT (WINAPI *MessageBoxA_funcptr)(HWND hWnd, LPCSTR text, LPCSTR title, UINT type);
1500
1501 /**************************************************************************
1502  *           FatalAppExit   (KERNEL.137)
1503  */
1504 void WINAPI FatalAppExit16( UINT16 action, LPCSTR str )
1505 {
1506     TDB *pTask = TASK_GetCurrent();
1507
1508     if (!pTask || !(pTask->error_mode & SEM_NOGPFAULTERRORBOX))
1509     {
1510         HMODULE mod = GetModuleHandleA( "user32.dll" );
1511         if (mod)
1512         {
1513             MessageBoxA_funcptr pMessageBoxA = (MessageBoxA_funcptr)GetProcAddress( mod, "MessageBoxA" );
1514             if (pMessageBoxA)
1515             {
1516                 pMessageBoxA( 0, str, NULL, MB_SYSTEMMODAL | MB_OK );
1517                 goto done;
1518             }
1519         }
1520         ERR( "%s\n", debugstr_a(str) );
1521     }
1522  done:
1523     ExitThread(0xff);
1524 }
1525
1526
1527 /***********************************************************************
1528  *           TerminateApp   (TOOLHELP.77)
1529  *
1530  * See "Undocumented Windows".
1531  */
1532 void WINAPI TerminateApp16(HTASK16 hTask, WORD wFlags)
1533 {
1534     if (hTask && hTask != GetCurrentTask())
1535     {
1536         FIXME("cannot terminate task %x\n", hTask);
1537         return;
1538     }
1539
1540     if (wFlags & NO_UAE_BOX)
1541     {
1542         UINT16 old_mode;
1543         old_mode = SetErrorMode16(0);
1544         SetErrorMode16(old_mode|SEM_NOGPFAULTERRORBOX);
1545     }
1546     FatalAppExit16( 0, NULL );
1547
1548     /* hmm, we're still alive ?? */
1549
1550     /* check undocumented flag */
1551     if (!(wFlags & 0x8000))
1552         TASK_CallTaskSignalProc( USIG16_TERMINATION, hTask );
1553
1554     /* UndocWin says to call int 0x21/0x4c exit=0xff here,
1555        but let's just call ExitThread */
1556     ExitThread(0xff);
1557 }
1558
1559
1560 /***********************************************************************
1561  *           GetAppCompatFlags   (KERNEL.354)
1562  */
1563 DWORD WINAPI GetAppCompatFlags16( HTASK16 hTask )
1564 {
1565     TDB *pTask;
1566
1567     if (!hTask) hTask = GetCurrentTask();
1568     if (!(pTask=TASK_GetPtr( hTask ))) return 0;
1569     if (GlobalSize16(hTask) < sizeof(TDB)) return 0;
1570     return pTask->compat_flags;
1571 }
1572
1573
1574 /***********************************************************************
1575  *           GetDOSEnvironment     (KERNEL.131)
1576  *
1577  * Note: the environment is allocated once, it doesn't track changes
1578  * made using the Win32 API. This shouldn't matter.
1579  *
1580  * Format of a 16-bit environment block:
1581  * ASCIIZ   string 1 (xx=yy format)
1582  * ...
1583  * ASCIIZ   string n
1584  * BYTE     0
1585  * WORD     1
1586  * ASCIIZ   program name (e.g. C:\WINDOWS\SYSTEM\KRNL386.EXE)
1587  */
1588 SEGPTR WINAPI GetDOSEnvironment16(void)
1589 {
1590     static const char ENV_program_name[] = "C:\\WINDOWS\\SYSTEM\\KRNL386.EXE";
1591     static HGLOBAL16 handle;  /* handle to the 16 bit environment */
1592
1593     if (!handle)
1594     {
1595         DWORD size;
1596         LPSTR p, env;
1597
1598         p = env = GetEnvironmentStringsA();
1599         while (*p) p += strlen(p) + 1;
1600         p++;  /* skip last null */
1601         size = (p - env) + sizeof(WORD) + sizeof(ENV_program_name);
1602         handle = GlobalAlloc16( GMEM_FIXED, size );
1603         if (handle)
1604         {
1605             WORD one = 1;
1606             LPSTR env16 = GlobalLock16( handle );
1607             memcpy( env16, env, p - env );
1608             memcpy( env16 + (p - env), &one, sizeof(one));
1609             memcpy( env16 + (p - env) + sizeof(WORD), ENV_program_name, sizeof(ENV_program_name));
1610             GlobalUnlock16( handle );
1611         }
1612         FreeEnvironmentStringsA( env );
1613     }
1614     return K32WOWGlobalLock16( handle );
1615 }