Commit 1491e3ff authored by Joseph Pranevich's avatar Joseph Pranevich Committed by Alexandre Julliard

Shell parameters (config.sys) and ANSI support stubs.

parent 0be39637
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment