mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
02e90087ff
Sat Jan 3 17:15:56 1998 Alexandre Julliard <julliard@lrc.epfl.ch> * [debugger/db_disasm.c] Added cpuid and cmpxchg instructions. * [if1632/builtin.c] [relay32/builtin32.c] Fixed broken -dll option with Win32 DLLs. * [include/heap.h] Added SYSTEM_LOCK/SYSTEM_UNLOCK macros. * [configure.in] [misc/lstr.c] Added check for wctype.h. Commented out --enable-ipc option (IPC code has been broken for a long time anyway). * [scheduler/critsection.c] [scheduler/event.c] [scheduler/mutex.c] [scheduler/semaphore.c] Implemented Win32 synchronization objects. * [scheduler/synchro.c] Implemented WaitForMultipleObjects and related functions. * [scheduler/thread.c] If possible, use clone() in CreateThread(). * [scheduler/thread.c] [scheduler/process.c] Made thread and process waitable objects. Thread and process id values are now different from the pointers they represent. * [win32/k32obj.c] Moved to scheduler directory. Added function table for waiting operations on objects. * [files/file.c] [memory/virtual.c] Added new K32OBJ function table. Sun Jan 1 16:48:23 1997 Andreas Mohr <100.30936@germany.net> * [files/file.c] Fixed my patch for GetTempFileName16() as needed. It was ...Name32A() that didn't work properly, not ...Name16(). * [graphics/x11drv/brush.c] Fixed a BadMatch error. * [msdos/int21.c] Fixed INT21_FindNextFCB() to get correct volume labels e.g. in "file open" dialog. * [multimedia/joystick.c] [relay32/winmm.spec] Stub JoyGetPosEx(). * [scheduler/process.c] [relay32/kernel32.spec] Implemented RegisterServiceProcess(). Wed Dec 31 11:14:43 1997 Lawson Whitney <lawson_whitney@juno.com> * [if1632/kernel.spec] [if1632/relay.c] Define CallProcEx32w - Thanks to Marcus Meissner for his excellent CallProc32W. * [loader/module.c] Take a shot at defining FreeLibrary32W. Sun Dec 28 12:44:04 1997 Kai Morich <kai.morich@rhein-neckar.netsurf.de> * [controls/menu.c] Menu modification from WM_INITMENUPOPUP message fixed. Menu items now can have different wID and hSubMenu (Win95 behavior). * [misc/cpu.c] Improved IsProcessorFeaturePresent. Sun Dec 28 03:21:08 1997 Ove Kaaven <ovek@main.arcticnet.no> * [include/winsock.h] [misc/winsock.c] Fixed WS_SOL_SOCKET for setsockopt(), and made select() return empty fd_sets if timeout. * [objects/palette.c] AnimatePalette() bailed out if entire palette is animated. Fixed. * [objects/dib.c] Added some code to SetDIBitsToDevice() and its helpers to fix some offseting problems. * [objects/cursoricon.c] Made CreateCursor32() convert the instance handle properly. Made DestroyCursor() return correct success status. Wed Dec 24 17:56:34 1997 Dimitrie O. Paun <dimi@cs.toronto.edu> * [windows/syscolor.c] Added definition of GetSysColorPen16/32. This function does not exist in the Win32 API but is a very close (and natural) relative to GetSysColorBrush function. Moreover, it is *very* much used within Wine since there are a lot of places where we need to draw lines with the standard colors. * [controls/button.c] [controls/combo.c] [controls/icontitle.c] [controls/menu.c] [controls/progress.c] [controls/scroll.c] [controls/updown.c] [graphics/painting.c] [misc/tweak.c] [windows/defwnd.c] [windows/graphics.c] [windows/nonclient.c] Replaced references to sysColorObjects with the appropriate call to GetSysColorBrush32/GetSysColorPen32. There is no need to expose the implementation of these functions, even within Wine. This makes the code easier to understand, debug, maintain. * [controls/uitools.c] Modified most of the functions in this file to use the now standard pens (i.e. GetSysColorPen32). These functions made *heavy* use of standard pens so I expect a lot less CreatePen/DeleteObject calls can do only good...:) Plus some minor modifications (*no* functional changes though). * [controls/updown.c] Used the new DrawFrameControl32 function to paint the control. I also deleted UDDOWN_DrawArrow since it was no longer required. Tue Dec 23 00:03:33 1997 Steinar Hamre <steinarh@stud.fim.ntnu.no> * [configure.in] Added check for -lw. * [include/wintypes.h] [tools/build.c] Changes to make the assembly understandable for even sun as. ".ascii" -> ".string", "call %foo" -> "call *%foo", "pushw/popw %[cdes]s" written out to ".byte 0x66\npushl/popl %[cdes]s". * [memory/ldt.c] #ifdef added so <sys/seg.h> will not be included on Solaris. Mon Dec 22 18:55:19 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [configure.in] Added XF86DGA check. * [multimedia/dsound.c][relay32/dsound.spec][include/dsound.h] Started DirectSound. Only stubs for now. * [graphics/ddraw.c][include/ddraw.h][relay32/ddraw.spec] Started to implement DirectDraw. Mostly stubs, some testcases work. Requires the XF86DGA extension to XFree86. (check demo/blizdemo.exe from the Diablo CD-ROM). * [files/drive.c] Return correct "CDFS" fsname so Diablo is a bit happier. Sun Dec 21 21:45:48 1997 Kevin Cozens <kcozens@interlog.com> * [misc/registry.c] Fixed bugs in the routines which read the Windows '95 registry files. Added extra information regarding the format of the Windows '95 registry files.
204 lines
5.8 KiB
C
204 lines
5.8 KiB
C
/*
|
|
* DOS interrupt 2fh handler
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include "ldt.h"
|
|
#include "drive.h"
|
|
#include "msdos.h"
|
|
#include "miscemu.h"
|
|
#include "module.h"
|
|
#include "stddebug.h"
|
|
/* #define DEBUG_INT */
|
|
#include "debug.h"
|
|
|
|
/* base WPROCS.DLL ordinal number for VxDs */
|
|
#define VXD_BASE 400
|
|
|
|
static void do_int2f_16( CONTEXT *context );
|
|
|
|
/**********************************************************************
|
|
* INT_Int2fHandler
|
|
*
|
|
* Handler for int 2fh (multiplex).
|
|
*/
|
|
void WINAPI INT_Int2fHandler( CONTEXT *context )
|
|
{
|
|
switch(AH_reg(context))
|
|
{
|
|
case 0x10:
|
|
AL_reg(context) = 0xff; /* share is installed */
|
|
break;
|
|
|
|
case 0x15: /* mscdex */
|
|
do_mscdex(context);
|
|
break;
|
|
|
|
case 0x16:
|
|
do_int2f_16( context );
|
|
break;
|
|
|
|
case 0x4a:
|
|
switch(AL_reg(context))
|
|
{
|
|
case 0x10: /* smartdrv */
|
|
break; /* not installed */
|
|
case 0x11: /* dblspace */
|
|
break; /* not installed */
|
|
case 0x12: /* realtime compression interface */
|
|
break; /* not installed */
|
|
default:
|
|
INT_BARF( context, 0x2f );
|
|
}
|
|
break;
|
|
case 0xb7: /* append */
|
|
AL_reg(context) = 0; /* not installed */
|
|
break;
|
|
case 0xbd: /* some Novell network install check ??? */
|
|
AX_reg(context) = 0xa5a5; /* pretend to have Novell IPX installed */
|
|
break;
|
|
default:
|
|
INT_BARF( context, 0x2f );
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
/**********************************************************************
|
|
* do_int2f_16
|
|
*/
|
|
static void do_int2f_16( CONTEXT *context )
|
|
{
|
|
DWORD addr;
|
|
|
|
switch(AL_reg(context))
|
|
{
|
|
case 0x00: /* Windows enhanced mode installation check */
|
|
AX_reg(context) = (GetWinFlags() & WF_ENHANCED) ?
|
|
LOWORD(GetVersion16()) : 0;
|
|
break;
|
|
|
|
case 0x0a: /* Get Windows version and type */
|
|
AX_reg(context) = 0;
|
|
BX_reg(context) = (LOWORD(GetVersion16()) << 8) |
|
|
(LOWORD(GetVersion16()) >> 8);
|
|
CX_reg(context) = (GetWinFlags() & WF_ENHANCED) ? 3 : 2;
|
|
break;
|
|
|
|
case 0x80: /* Release time-slice */
|
|
AL_reg(context) = 0;
|
|
/* FIXME: We need to do something that lets some other process run
|
|
here. */
|
|
sleep(0);
|
|
break;
|
|
|
|
case 0x81: /* Begin critical section. */
|
|
/* FIXME? */
|
|
break;
|
|
|
|
case 0x82: /* End critical section. */
|
|
/* FIXME? */
|
|
break;
|
|
|
|
case 0x83: /* Return Current Virtual Machine ID */
|
|
/* Virtual Machines are usually created/destroyed when Windows runs
|
|
* DOS programs. Since we never do, we are always in the System VM.
|
|
* According to Ralf Brown's Interrupt List, never return 0. But it
|
|
* seems to work okay (returning 0), just to be sure we return 1.
|
|
*/
|
|
BX_reg(context) = 1; /* VM 1 is probably the System VM */
|
|
break;
|
|
|
|
case 0x84: /* Get device API entry point */
|
|
addr = (DWORD)MODULE_GetEntryPoint( GetModuleHandle16("WPROCS"),
|
|
VXD_BASE + BX_reg(context) );
|
|
if (!addr) /* not supported */
|
|
{
|
|
fprintf( stderr,"Application attempted to access VxD %04x\n",
|
|
BX_reg(context) );
|
|
fprintf( stderr,"This device is not known to Wine.");
|
|
fprintf( stderr,"Expect a failure now\n");
|
|
}
|
|
ES_reg(context) = SELECTOROF(addr);
|
|
DI_reg(context) = OFFSETOF(addr);
|
|
break;
|
|
|
|
case 0x86: /* DPMI detect mode */
|
|
AX_reg(context) = 0; /* Running under DPMI */
|
|
break;
|
|
|
|
/* FIXME: is this right? Specs say that this should only be callable
|
|
in real (v86) mode which we never enter. */
|
|
case 0x87: /* DPMI installation check */
|
|
{
|
|
SYSTEM_INFO si;
|
|
|
|
GetSystemInfo(&si);
|
|
AX_reg(context) = 0x0000; /* DPMI Installed */
|
|
BX_reg(context) = 0x0001; /* 32bits available */
|
|
CL_reg(context) = si.wProcessorLevel;
|
|
DX_reg(context) = 0x005a; /* DPMI major/minor 0.90 */
|
|
SI_reg(context) = 0; /* # of para. of DOS extended private data */
|
|
ES_reg(context) = 0; /* ES:DI is DPMI switch entry point */
|
|
DI_reg(context) = 0;
|
|
break;
|
|
}
|
|
case 0x8a: /* DPMI get vendor-specific API entry point. */
|
|
/* The 1.0 specs say this should work with all 0.9 hosts. */
|
|
break;
|
|
|
|
default:
|
|
INT_BARF( context, 0x2f );
|
|
}
|
|
}
|
|
|
|
void do_mscdex( CONTEXT *context )
|
|
{
|
|
int drive, count;
|
|
char *p;
|
|
|
|
switch(AL_reg(context))
|
|
{
|
|
case 0x00: /* Installation check */
|
|
/* Count the number of contiguous CDROM drives
|
|
*/
|
|
for (drive = count = 0; drive < MAX_DOS_DRIVES; drive++)
|
|
{
|
|
if (DRIVE_GetType(drive) == TYPE_CDROM)
|
|
{
|
|
while (DRIVE_GetType(drive + count) == TYPE_CDROM) count++;
|
|
break;
|
|
}
|
|
}
|
|
|
|
BX_reg(context) = count;
|
|
CX_reg(context) = (drive < MAX_DOS_DRIVES) ? drive : 0;
|
|
break;
|
|
|
|
case 0x0B: /* drive check */
|
|
AX_reg(context) = (DRIVE_GetType(CX_reg(context)) == TYPE_CDROM);
|
|
BX_reg(context) = 0xADAD;
|
|
break;
|
|
|
|
case 0x0C: /* get version */
|
|
BX_reg(context) = 0x020a;
|
|
break;
|
|
|
|
case 0x0D: /* get drive letters */
|
|
p = PTR_SEG_OFF_TO_LIN(ES_reg(context), BX_reg(context));
|
|
memset( p, 0, MAX_DOS_DRIVES );
|
|
for (drive = 0; drive < MAX_DOS_DRIVES; drive++)
|
|
{
|
|
if (DRIVE_GetType(drive) == TYPE_CDROM) *p++ = drive;
|
|
}
|
|
break;
|
|
|
|
default:
|
|
fprintf(stderr, "Unimplemented MSCDEX function 0x%02.2X.\n", AL_reg(context));
|
|
break;
|
|
}
|
|
}
|