mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 13:27:35 +00:00
3ed37e0869
Sun Nov 6 18:52:04 1994 Alexandre Julliard (julliard@lamisun.epfl.ch) * [objects/oembitmap.c] (New file) Added possibility to use .xpm files for OEM bitmaps. * [include/bitmaps/obm*] (New files) Redrawn all OEM bitmaps in xpm format. * [objects/font.c] Add space for internal leading when using a negative font height. Stubs for AddFontResource() and RemoveFontResource(). Fix in FONT_Init() for uninitialised default font. * [windows/dialog.c] Make font height negative as it is really a point size and not a pixel size; dialogs using 8-point fonts look better now. * [windows/graphics.c] Fixed the fix :-) for Pie() to make it work for Arc() and Chord() also. * [windows/nonclient.c] A few changes for new OEM bitmaps. Sun Nov 6 18:22:18 1994 Michael Patra <micky@marie.physik.tu-berlin.de> * [windows/class.c] The names of local classes have to be stored using GlobalAtom*. Otherwise they couldn't be accessed from other modules (e.g. BWCC) * [if1632/call.S] CallTo16(cx): It's possible to set the contents of the cx-register. * [loader/ne_image.c] InitNEDLL(): The size of the local heap is now passed in the cx- register when initializing a DLL. * [memory/heap.c] LocalInit(): The case start==0 is now handled in the way it should. * [windows/win.c] GetWindowLong(): If the adress of the windows function is requested it's no longer returned if it's within the Wine code (and therefore unreachable by a windows program). This makes Borland's OWL happy. * [controls/edit.c] EDIT_GetStr(): Added handling for off<0. Sun Nov 6 17:37:14 1994 Chris Jones <chrisj@ichips.intel.com> * [loader/library.c] Fixed infinite loop bug when two DLLs refer to each other (fixes hangup of Quicken during loading). Thu Nov 04 12:00:00 1994 Jan Willamowius (jan@janhh.sh.sub.de) * [misc/dos_fs.c] Bug fix: The size of a disk an the available space is now returned in bytes instead of (incorrectly) KBytes. Thu Nov 03 12:00:00 1994 Jan Willamowius (jan@janhh.sh.sub.de) * [windows/graphics.c] Bug fix: Pie segments are now filled with correct brush. Thu Nov 3 10:40:09 1994 Martin von Loewis (martin@cs.csufresno.edu) * [Imakefile] generate rc.o before loader.o * [controls/menu.c] CopySysMenu: generate SYSMENU on the fly, eliminate hSysMenu * [include/resource.h] Add struct ResourceTable * [loader/bitmap.h] Load system bitmaps from sysresbmTable * [misc/clipboard.c] [windows/event.c] IsClipboardFormatAvailable,EVENT_SelectionRequest: bug fixes * [rc/Imakefile] generate rc.o from sysres.o and sysresbm.o. Added -lfl * [rc/rc.y] change style handling to allow ( S1 | S2 ) | S3 * [rc/sysres.rc] [rc/sysresbm.rc] Put bitmaps and icons to sysresbm, everything else to sysres * [rc/winerc.c] [rc/winerc.h] Added -o, -c flags. New function set_out_file. Output to files. * [windows/dialog.c] DialogBoxIndirectPtr, DialogBoxIndirectParamPtr: New functions * [windows/nonclient.c] Create AboutWine dialog from template pointer
101 lines
3 KiB
C
101 lines
3 KiB
C
#ifndef WINELIB
|
|
static char RCSId[] = "$Id: ldtlib.c,v 1.2 1993/07/04 04:04:21 root Exp root $";
|
|
static char Copyright[] = "Copyright Robert J. Amstadt, 1993";
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include "stddebug.h"
|
|
/* #define DEBUG_LDT */
|
|
/* #undef DEBUG_LDT */
|
|
#include "debug.h"
|
|
|
|
#ifdef linux
|
|
#include <linux/unistd.h>
|
|
#include <linux/head.h>
|
|
#include <linux/ldt.h>
|
|
|
|
_syscall3(int, modify_ldt, int, func, void *, ptr, unsigned long, bytecount)
|
|
#endif
|
|
#if defined(__NetBSD__) || defined(__FreeBSD__)
|
|
#include <machine/segments.h>
|
|
|
|
extern int i386_get_ldt(int, union descriptor *, int);
|
|
extern int i386_set_ldt(int, union descriptor *, int);
|
|
|
|
struct segment_descriptor *
|
|
make_sd(unsigned base, unsigned limit, int contents, int read_exec_only, int seg32, int inpgs)
|
|
{
|
|
static long d[2];
|
|
|
|
d[0] = ((base & 0x0000ffff) << 16) |
|
|
(limit & 0x0ffff);
|
|
d[1] = (base & 0xff000000) |
|
|
((base & 0x00ff0000)>>16) |
|
|
(limit & 0xf0000) |
|
|
(contents << 10) |
|
|
((read_exec_only ^ 1) << 9) |
|
|
(seg32 << 22) |
|
|
(inpgs << 23) |
|
|
0xf000;
|
|
|
|
return ((struct segment_descriptor *)d);
|
|
}
|
|
#endif
|
|
|
|
int
|
|
get_ldt(void *buffer)
|
|
{
|
|
#ifdef linux
|
|
return modify_ldt(0, buffer, 32 * sizeof(struct modify_ldt_ldt_s));
|
|
#endif
|
|
#if defined(__NetBSD__) || defined(__FreeBSD__)
|
|
return i386_get_ldt(0, (union descriptor *)buffer, 32);
|
|
#endif
|
|
}
|
|
|
|
int
|
|
set_ldt_entry(int entry, unsigned long base, unsigned int limit,
|
|
int seg_32bit_flag, int contents, int read_only_flag,
|
|
int limit_in_pages_flag)
|
|
{
|
|
#ifdef linux
|
|
struct modify_ldt_ldt_s ldt_info;
|
|
|
|
ldt_info.entry_number = entry;
|
|
ldt_info.base_addr = base;
|
|
ldt_info.limit = limit;
|
|
ldt_info.seg_32bit = seg_32bit_flag;
|
|
ldt_info.contents = contents;
|
|
ldt_info.read_exec_only = read_only_flag;
|
|
ldt_info.limit_in_pages = limit_in_pages_flag;
|
|
#ifdef NEW_LDT_STRUCT
|
|
ldt_info.seg_not_present = 0;
|
|
#endif
|
|
|
|
return modify_ldt(1, &ldt_info, sizeof(ldt_info));
|
|
#endif
|
|
#if defined(__NetBSD__) || defined(__FreeBSD__)
|
|
struct segment_descriptor *sd;
|
|
int ret;
|
|
|
|
dprintf_ldt(stddeb,
|
|
"set_ldt_entry: entry=%x base=%x limit=%x%s %s-bit contents=%d %s\n",
|
|
entry, base, limit, limit_in_pages_flag?"-pages":"",
|
|
seg_32bit_flag?"32":"16",
|
|
contents, read_only_flag?"read-only":"");
|
|
|
|
sd = make_sd(base, limit, contents, read_only_flag, seg_32bit_flag, limit_in_pages_flag);
|
|
ret = i386_set_ldt(entry, (union descriptor *)sd, 1);
|
|
if (ret < 0) {
|
|
perror("i386_set_ldt");
|
|
fprintf(stderr,
|
|
"Did you reconfigure the kernel with \"options USER_LDT\"?\n");
|
|
exit(1);
|
|
}
|
|
|
|
return ret;
|
|
|
|
#endif
|
|
}
|
|
#endif /* ifndef WINELIB */
|