Wed Mar 13 19:46:50 1996 Alexandre Julliard <julliard@lrc.epfl.ch> * [controls/edit.c] Removed calls to memmove (not portable). * [debugger/dbg.y] [debugger/debug.l] Prefixed all token with 't' to avoid conflicts with type definitions. Added 'walk queue', 'walk class' and 'info class' commands. * [debugger/info.c] Moved queue and window information functions to windows/queue.c and windows/win.c respectively. * [loader/signal.c] Added SIGHUP handling to force entry into built-in debugger. Cleaned up a bit. * [misc/spy.c] General cleanup and performance improvements. * [windows/class.c] Added CLASS_DumpClass() and CLASS_WalkClasses() functions for debugger. * [windows/event.c] Pressing Ctrl-Alt-Return forces an entry into the debugger. Not sure if this key combination is a good choice... * [windows/message.c] [windows/queue.c] (New file) Moved message queue handling functions to windows/queue.c. Tue Mar 12 14:55:16 1996 Onno Hovers <onno@stack.urc.tue.nl> * [if1632/except.S] [include/except.h] [win32/except.c] (New files) Implemented Win32 exception functions: RaiseException(), RtlUnwind(), SetUnhandledExceptionFilter() and UnhandledExceptionFilter(). Mon Mar 11 19:23:29 1996 Albrecht Kleine <kleine@ak.sax.de> * [controls/listbox.c] [include/listbox.h] Special handling for COMBOLBOX styles introduced via extension of HEADLIST structure: lphl->dwStyle. Mon Mar 11 13:31:06 1996 Greg Kreider <kreider@natlab.research.philips.com> * [controls/combo.c] Any mouse movement within a small distance (defined by CBLMM_EDGE) of the top or bottom edge causes the window to scroll. Also moved some assignments so the routine works correctly. * [controls/listbox.c] Changing selection in ListBoxSetCurSel now updates PrevFocused. Added to LBSetFont and CreateListBoxStruct a fake hdc that tests and sets the standard text height. Sun Mar 10 08:39:23 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu> * [windows/dce.c] Fixed memory leak in DCE_ClipWindows().
125 lines
5.1 KiB
C
125 lines
5.1 KiB
C
/*
|
|
* Task definitions
|
|
*
|
|
* Copyright 1995 Alexandre Julliard
|
|
*/
|
|
|
|
#ifndef _WINE_TASK_H
|
|
#define _WINE_TASK_H
|
|
|
|
#include "wintypes.h"
|
|
|
|
#ifndef WINELIB
|
|
#pragma pack(1)
|
|
#endif
|
|
|
|
|
|
extern BOOL TASK_Init(void);
|
|
extern void TASK_KillCurrentTask( int exitCode );
|
|
|
|
/* Process database (i.e. a normal DOS PSP) */
|
|
|
|
typedef struct
|
|
{
|
|
WORD int20; /* 00 int 20h instruction */
|
|
WORD nextParagraph; /* 02 Segment of next paragraph */
|
|
BYTE reserved1;
|
|
BYTE dispatcher[5]; /* 05 Long call to DOS */
|
|
SEGPTR savedint22 WINE_PACKED; /* 0a Saved int 22h handler */
|
|
SEGPTR savedint23 WINE_PACKED; /* 0e Saved int 23h handler */
|
|
SEGPTR savedint24 WINE_PACKED; /* 12 Saved int 24h handler */
|
|
WORD parentPSP; /* 16 Selector of parent PSP */
|
|
BYTE fileHandles[20]; /* 18 Open file handles */
|
|
HANDLE environment; /* 2c Selector of environment */
|
|
WORD reserved2[2];
|
|
WORD nbFiles; /* 32 Number of file handles */
|
|
SEGPTR fileHandlesPtr; /* 34 Pointer to file handle table */
|
|
WORD reserved3[18];
|
|
BYTE fcb1[16]; /* 5c First FCB */
|
|
BYTE fcb2[20]; /* 6c Second FCB */
|
|
BYTE cmdLine[128]; /* 80 Command-line (first byte is len) */
|
|
} PDB;
|
|
|
|
|
|
/* Segment containing MakeProcInstance() thunks */
|
|
typedef struct
|
|
{
|
|
WORD next; /* Selector of next segment */
|
|
WORD magic; /* Thunks signature */
|
|
WORD unused;
|
|
WORD free; /* Head of the free list */
|
|
WORD thunks[4]; /* Each thunk is 4 words long */
|
|
} THUNKS;
|
|
|
|
#define THUNK_MAGIC ('P' | ('T' << 8))
|
|
|
|
|
|
/* Task database. See 'Windows Internals' p. 226 */
|
|
typedef struct
|
|
{
|
|
HTASK hNext; /* Selector of next TDB */
|
|
WORD sp; /* Stack pointer of task */
|
|
WORD ss; /* Stack segment of task */
|
|
WORD nEvents; /* Events for this task */
|
|
char priority; /* Task priority, between -32 and 15 */
|
|
BYTE unused1;
|
|
HGLOBAL hStack32; /* Handle to 32-bit stack */
|
|
HTASK hSelf; /* Selector of this TDB */
|
|
HANDLE hPrevInstance; /* Previous instance of the module */
|
|
DWORD esp; /* 32-bit stack pointer */
|
|
WORD ctrlword8087; /* 80x87 control word */
|
|
WORD flags; /* Task flags */
|
|
UINT error_mode; /* Error mode (see SetErrorMode) */
|
|
WORD version; /* Expected Windows version */
|
|
HANDLE hInstance; /* Instance handle for this task */
|
|
HMODULE hModule; /* Module handle */
|
|
HQUEUE hQueue; /* Selector of task message queue */
|
|
HTASK hParent; /* Selector of TDB of parent task */
|
|
WORD signal_flags; /* Flags related to signal handler */
|
|
DWORD sighandler WINE_PACKED; /* Signal handler */
|
|
DWORD userhandler WINE_PACKED; /* USER signal handler */
|
|
DWORD discardhandler WINE_PACKED; /* Handler for GlobalDiscard() */
|
|
DWORD int0 WINE_PACKED; /* int 0 (divide by zero) handler */
|
|
DWORD int2 WINE_PACKED; /* int 2 (NMI) handler */
|
|
DWORD int4 WINE_PACKED; /* int 4 (INTO) handler */
|
|
DWORD int6 WINE_PACKED; /* int 6 (invalid opcode) handler */
|
|
DWORD int7 WINE_PACKED; /* int 7 (coprocessor) handler */
|
|
DWORD int3e WINE_PACKED; /* int 3e (80x87 emulator) handler */
|
|
DWORD int75 WINE_PACKED; /* int 75 (80x87 error) handler */
|
|
DWORD compat_flags WINE_PACKED; /* Compatibility flags */
|
|
BYTE unused4[14];
|
|
HANDLE hPDB; /* Selector of PDB (i.e. PSP) */
|
|
DWORD dta WINE_PACKED; /* Current DTA */
|
|
BYTE curdrive; /* Current drive */
|
|
BYTE curdir[65]; /* Current directory */
|
|
WORD nCmdShow; /* cmdShow parameter to WinMain */
|
|
HTASK hYieldTo; /* Next task to schedule */
|
|
DWORD dlls_to_init; /* Ptr to list of DLL to initialize */
|
|
HANDLE hCSAlias; /* Code segment alias for this TDB */
|
|
THUNKS thunks WINE_PACKED; /* Make proc instance thunks */
|
|
WORD more_thunks[6*4]; /* Space for 6 more thunks */
|
|
BYTE module_name[8]; /* Module name for task */
|
|
WORD magic; /* TDB signature */
|
|
DWORD unused7;
|
|
PDB pdb; /* PDB for this task */
|
|
} TDB;
|
|
|
|
#define TDB_MAGIC ('T' | ('D' << 8))
|
|
|
|
/* TDB flags */
|
|
#define TDBF_WINOLDAP 0x0001
|
|
#define TDBF_OS2APP 0x0008
|
|
#define TDBF_WIN32S 0x0010
|
|
|
|
#ifndef WINELIB
|
|
#pragma pack(4)
|
|
#endif
|
|
|
|
extern HTASK TASK_CreateTask( HMODULE hModule, HANDLE hInstance,
|
|
HANDLE hPrevInstance, HANDLE hEnvironment,
|
|
char *cmdLine, WORD cmdShow );
|
|
|
|
/* TASK_Reschedule() 16-bit entry point */
|
|
extern FARPROC RELAY_RescheduleProcAddr;
|
|
|
|
#endif /* _WINE_TASK_H */
|