From 37f5166bf4edab0b477691cf34c63fec77b7cf4e Mon Sep 17 00:00:00 2001 From: Florian Goth Date: Tue, 30 Mar 2004 20:43:00 +0000 Subject: [PATCH] Added some stubs. --- dlls/winedos/int16.c | 4 ++++ dlls/winedos/int17.c | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/dlls/winedos/int16.c b/dlls/winedos/int16.c index d68384299a..40379fc1e8 100644 --- a/dlls/winedos/int16.c +++ b/dlls/winedos/int16.c @@ -96,6 +96,10 @@ void WINAPI DOSVM_Int16Handler( CONTEXT86 *context ) case 0x03: /* Set Typematic Rate and Delay */ FIXME("Set Typematic Rate and Delay - Not Supported\n"); break; + + case 0x05:/*simulate Keystroke*/ + FIXME("Simulating a keystroke is not supported yet\n"); + break; case 0x09: /* Get Keyboard Functionality */ FIXME("Get Keyboard Functionality - Not Supported\n"); diff --git a/dlls/winedos/int17.c b/dlls/winedos/int17.c index fb6ca06304..65a6a7206a 100644 --- a/dlls/winedos/int17.c +++ b/dlls/winedos/int17.c @@ -37,6 +37,10 @@ void WINAPI DOSVM_Int17Handler( CONTEXT86 *context ) { switch( AH_reg(context) ) { + case 0x00:/* Send character*/ + FIXME("Send character not supported yet\n"); + SET_AH( context, 0x00 );/*Timeout*/ + break; case 0x01: /* PRINTER - INITIALIZE */ FIXME("Initialize Printer - Not Supported\n"); SET_AH( context, 0x30 ); /* selected | out of paper */ -- 2.32.0.93.g670b81a890