From 1491e3ffea077ed1cab2a4917f08cd8e8045e6d3 Mon Sep 17 00:00:00 2001 From: Joseph Pranevich Date: Sat, 17 Oct 1998 11:58:15 +0000 Subject: [PATCH] Shell parameters (config.sys) and ANSI support stubs. --- msdos/int2f.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/msdos/int2f.c b/msdos/int2f.c index 4d6186ab6fc..43e74177656 100644 --- a/msdos/int2f.c +++ b/msdos/int2f.c @@ -94,6 +94,11 @@ void WINAPI INT_Int2fHandler( CONTEXT *context ) case 0x16: do_int2f_16( context ); break; + + case 0x1a: /* ANSI.SYS / AVATAR.SYS Install Check */ + /* Not supported yet, do nothing */ + break; + case 0x43: #if 1 switch (AL_reg(context)) @@ -247,6 +252,11 @@ static void do_int2f_16( CONTEXT *context ) CX_reg(context) = (GetWinFlags() & WF_ENHANCED) ? 3 : 2; break; + case 0x11: /* Get Shell Parameters - (SHELL= in CONFIG.SYS) */ + /* We can mock this up. But not today... */ + FIXME(int, "Get Shell Parameters\n"); + break; + case 0x80: /* Release time-slice */ AL_reg(context) = 0; /* FIXME: We need to do something that lets some other process run