mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 05:00:30 +00:00
c6c09442c4
Sat Jan 11 18:17:59 1997 Alexandre Julliard <julliard@lrc.epfl.ch> * [controls/menu.c] Updated to new Win32 types. * [controls/listbox.c] Fixed Winfile extended selection bug. * [files/directory.c] Changed DIR_SearchPath to return both long and short file names. * [files/dos_fs.c] Implemented VFAT ioctl to retrieve the original short filenames from a VFAT filesystem (Linux only for now). Replaced DOSFS_GetUnixFileName()/DOSFS_GetDosTrueName() by DOS_GetFullName(). Properly implemented GetShortPathName() and GetFullPathName(). Made all functions re-entrant. * [files/file.c] [misc/main.c] Replaced -allowreadonly option by -failreadonly. The default is now to report success when opening a read-only file for writing. * [objects/metafile.c] Fixed bug in DIB bitmaps pointer calculation. * [scheduler/process.c] Implemented environment strings and Get/SetStdHandle with process environment block. * [tools/build.c] Rewrote BuildContext32() to avoid instructions that may not be supported by all assemblers. Fri Jan 10 17:11:09 1997 David Faure <david.faure@ifhamy.insa-lyon.fr> * [windows/event.c] Created table keyc2vkey, which associate a vkey(+extended bit) to any keycode. Changed EVENT_event_to_vkey to use this table to return the correct vkey. Changed EVENT_ToAscii to get the keycode from this table too. Assigned OEM specific vkeys arbitrarily. Fri Jan 10 09:26:17 1997 John Harvey <john@division.co.uk> * [misc/winsock.c] [misc/winsoc_async.c] Fixed svr4 header files. Changed bzero() to memset(). * [tools/fnt2bdf.c] Removed bcopy() and used memcpy() instead. * [debugger/msc.c] Include string.h instead of strings.h * [debugger/stabs.c] Include string.h instead of strings.h. Define __ELF__ for svr4 systems. * [loader/signal.c] Use wait() instead of wait4() which doesnt exist on Unixware. * [memory/global.c] Use sysconf() instead of getpagesize() for svr4 systems. Thu Jan 9 21:07:20 1997 Robert Pouliot <krynos@clic.net> * [Make.rules.in] [Makefile.in] [make_os2.sh] [rc/Makefile.in] [tools/Makefile.in] [documentation/wine_os2.txt] Patches for OS/2 support. Note that it doesn't compile yet. Tue Jan 7 20:03:53 1997 Eric Youngdale <eric@sub2304.jic.com> * [debugger/*] Many more debugger improvements (see debugger/README for details). Tue Jan 7 15:12:21 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [windows/graphics.c] [objects/text.c] [graphics/x11drv/*] [graphics/metafiledrv/*] Moved some device dependent code into the resp. subdirs. * [include/gdi.h] [include/metafiledrv.h] [include/x11drv.h] Prototypes added, DC_FUNCTIONS: GetPixel added, some unnecessary functions removed. * [objects/region.c] CreatePolyPolygonRgn32 added. * [files/dos_fs.c] QueryDosDevice added. * [misc/lstr.c] FormatMessage: broken heap management fixed. * [scheduler/process.c] [scheduler/thread.c] Get/SetThreadPriority/PriorityClass added. Mon Jan 6 21:55:30 1997 Philippe De Muyter <phdm@info.ucl.ac.be> * [misc/keyboard.c] ToAscii : Use EVENT_ToAscii instead. * [windows/event.c] keypad_key : Do not convert XK_Mode_switch to VK_MENU; recognize keypad cursor keys. EVENT_event_to_vkey : New function, to transform a X keycode into a MSwin vkey + extended bit. EVENT_ToAscii : New function, to transform a vkey + extended bit (+ key state table) into ascii char(s), using XLookupString, and recognizing dead chars. EVENT_key : Transform AltGr into Ctrl+Alt sequence; call EVENT_event_to_vkey for keycode to vkey conversion; fixed previous, context and extended bits. * [windows/keyboard.c] Include stddebug.h, to get -debugmsg messages. GetKeyState : Handle VK_MBUTTON case. GetKeyboardState, SetKeyboardState : Debugging messages added. * [windows/message.c] TranslateMessage : Handle dead chars. Mon Jan 6 20:10:11 1997 Dominik Strasser <bm424953@muenchen.org> * [if1632/crtdll.spec] [misc/crtdll.c] C++ functions new/delete/set_new_handler implemented. Mon Jan 6 15:48:15 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl> * [controls/edit.c] [include/windows.h] Moved the edit control to 32 bits. Included new (win95) message definitions in windows.h Implemented EM_SCROLLCARET, EM_SETMARGINS, EM_GETMARGINS, EM_GETLIMITTEXT, EM_POSFROMCHAR, EM_CHARFROMPOS. Broke EM_SETWORDBREAKPROC (internal wordwrap still works). Fixed some bugs, introduced a couple of others. Text buffer is now initially in 32-bit heap. * [controls/EDIT.TODO] [controls/combo.c] [controls/widgets.c] [if1632/wprocs.spec] [library/miscstubs.c] [windows/defdlg.c] [misc/commdlg.c] Updated to work with 32-bit edit control. Sat Jan 4 22:07:27 1997 O.Flebbe <O.Flebbe@science-computing.uni-tuebingen.de> * [loader/pe_image.c] Use mmap rather then malloc. Better workaround for clean segments.
144 lines
5.8 KiB
C
144 lines
5.8 KiB
C
/*
|
|
* Module definitions
|
|
*
|
|
* Copyright 1995 Alexandre Julliard
|
|
*/
|
|
|
|
#ifndef __WINE_MODULE_H
|
|
#define __WINE_MODULE_H
|
|
|
|
#include "wintypes.h"
|
|
#include "pe_image.h"
|
|
|
|
/* In-memory module structure. See 'Windows Internals' p. 219 */
|
|
typedef struct
|
|
{
|
|
WORD magic; /* 00 'NE' signature */
|
|
WORD count; /* 02 Usage count */
|
|
WORD entry_table; /* 04 Near ptr to entry table */
|
|
HMODULE16 next; /* 06 Selector to next module */
|
|
WORD dgroup_entry; /* 08 Near ptr to segment entry for DGROUP */
|
|
WORD fileinfo; /* 0a Near ptr to file info (OFSTRUCT) */
|
|
WORD flags; /* 0c Module flags */
|
|
WORD dgroup; /* 0e Logical segment for DGROUP */
|
|
WORD heap_size; /* 10 Initial heap size */
|
|
WORD stack_size; /* 12 Initial stack size */
|
|
WORD ip; /* 14 Initial ip */
|
|
WORD cs; /* 16 Initial cs (logical segment) */
|
|
WORD sp; /* 18 Initial stack pointer */
|
|
WORD ss; /* 1a Initial ss (logical segment) */
|
|
WORD seg_count; /* 1c Number of segments in segment table */
|
|
WORD modref_count; /* 1e Number of module references */
|
|
WORD nrname_size; /* 20 Size of non-resident names table */
|
|
WORD seg_table; /* 22 Near ptr to segment table */
|
|
WORD res_table; /* 24 Near ptr to resource table */
|
|
WORD name_table; /* 26 Near ptr to resident names table */
|
|
WORD modref_table; /* 28 Near ptr to module reference table */
|
|
WORD import_table; /* 2a Near ptr to imported names table */
|
|
DWORD nrname_fpos; /* 2c File offset of non-resident names table */
|
|
WORD moveable_entries; /* 30 Number of moveable entries in entry table*/
|
|
WORD alignment; /* 32 Alignment shift count */
|
|
WORD truetype; /* 34 Set to 2 if TrueType font */
|
|
BYTE os_flags; /* 36 Operating system flags */
|
|
BYTE misc_flags; /* 37 Misc. flags */
|
|
HANDLE16 dlls_to_init; /* 38 List of DLLs to initialize */
|
|
HANDLE16 nrname_handle; /* 3a Handle to non-resident name table */
|
|
WORD min_swap_area; /* 3c Min. swap area size */
|
|
WORD expected_version; /* 3e Expected Windows version */
|
|
/* From here, these are extra fields not present in normal Windows */
|
|
PE_MODULE *pe_module; /* 40 PE module handle for Win32 modules */
|
|
HMODULE16 self; /* 44 Handle for this module */
|
|
WORD self_loading_sel; /* 46 Selector used for self-loading apps. */
|
|
} NE_MODULE;
|
|
|
|
|
|
/* In-memory segment table */
|
|
typedef struct
|
|
{
|
|
WORD filepos; /* Position in file, in sectors */
|
|
WORD size; /* Segment size on disk */
|
|
WORD flags; /* Segment flags */
|
|
WORD minsize; /* Min. size of segment in memory */
|
|
HANDLE16 selector; /* Selector of segment in memory */
|
|
} SEGTABLEENTRY;
|
|
|
|
|
|
/* Self-loading modules contain this structure in their first segment */
|
|
|
|
typedef struct
|
|
{
|
|
WORD version; /* Must be 0xA0 */
|
|
WORD reserved;
|
|
FARPROC16 BootApp; /* startup procedure */
|
|
FARPROC16 LoadAppSeg; /* procedure to load a segment */
|
|
FARPROC16 reserved2;
|
|
FARPROC16 MyAlloc; /* memory allocation procedure,
|
|
* wine must write this field */
|
|
FARPROC16 EntryAddrProc;
|
|
FARPROC16 ExitProc; /* exit procedure */
|
|
WORD reserved3[4];
|
|
FARPROC16 SetOwner; /* Set Owner procedure, exported by wine */
|
|
} SELFLOADHEADER;
|
|
|
|
#pragma pack(1)
|
|
|
|
/* Parameters for LoadModule() */
|
|
typedef struct
|
|
{
|
|
HGLOBAL16 hEnvironment; /* Environment segment */
|
|
SEGPTR cmdLine WINE_PACKED; /* Command-line */
|
|
SEGPTR showCmd WINE_PACKED; /* Code for ShowWindow() */
|
|
SEGPTR reserved WINE_PACKED;
|
|
} LOADPARAMS;
|
|
|
|
#pragma pack(4)
|
|
|
|
/* Resource types */
|
|
typedef struct resource_typeinfo_s NE_TYPEINFO;
|
|
typedef struct resource_nameinfo_s NE_NAMEINFO;
|
|
|
|
#define NE_SEG_TABLE(pModule) \
|
|
((SEGTABLEENTRY *)((char *)(pModule) + (pModule)->seg_table))
|
|
|
|
#define NE_MODULE_TABLE(pModule) \
|
|
((WORD *)((char *)(pModule) + (pModule)->modref_table))
|
|
|
|
#define NE_MODULE_NAME(pModule) \
|
|
(((OFSTRUCT *)((char*)(pModule) + (pModule)->fileinfo))->szPathName)
|
|
|
|
#define NE_WIN32_MODULE(pModule) \
|
|
((struct pe_data *)(((pModule)->flags & NE_FFLAGS_WIN32) ? \
|
|
((NE_WIN32_EXTRAINFO *)((pModule) + 1))->pe_module : 0))
|
|
|
|
/* module.c */
|
|
extern NE_MODULE *MODULE_GetPtr( HMODULE16 hModule );
|
|
extern void MODULE_DumpModule( HMODULE16 hmodule );
|
|
extern void MODULE_WalkModules(void);
|
|
extern int MODULE_OpenFile( HMODULE16 hModule );
|
|
extern LPSTR MODULE_GetModuleName( HMODULE16 hModule );
|
|
extern void MODULE_RegisterModule( NE_MODULE *pModule );
|
|
extern HMODULE16 MODULE_FindModule( LPCSTR path );
|
|
extern HINSTANCE16 MODULE_GetInstance( HMODULE16 hModule );
|
|
extern HMODULE16 MODULE_CreateDummyModule( const OFSTRUCT *ofs );
|
|
extern WORD MODULE_GetOrdinal( HMODULE16 hModule, const char *name );
|
|
extern FARPROC16 MODULE_GetEntryPoint( HMODULE16 hModule, WORD ordinal );
|
|
extern BOOL16 MODULE_SetEntryPoint( HMODULE16 hModule, WORD ordinal,
|
|
WORD offset );
|
|
extern FARPROC16 MODULE_GetWndProcEntry16( const char *name );
|
|
|
|
/* builtin.c */
|
|
extern BOOL16 BUILTIN_Init(void);
|
|
extern HMODULE16 BUILTIN_LoadModule( LPCSTR name, BOOL16 force );
|
|
extern LPCSTR BUILTIN_GetEntryPoint16( WORD cs, WORD ip, WORD *pOrd );
|
|
extern LPCSTR BUILTIN_GetEntryPoint32( void *relay );
|
|
extern FARPROC32 BUILTIN_GetProcAddress32(NE_MODULE *pModule, LPCSTR function);
|
|
extern BOOL16 BUILTIN_ParseDLLOptions( const char *str );
|
|
extern void BUILTIN_PrintDLLs(void);
|
|
|
|
/* ne_image.c */
|
|
extern BOOL16 NE_LoadSegment( HMODULE16 hModule, WORD segnum );
|
|
extern void NE_FixupPrologs( NE_MODULE *pModule );
|
|
extern void NE_InitializeDLLs( HMODULE16 hModule );
|
|
|
|
#endif /* __WINE_MODULE_H */
|