Added some stubs.

This commit is contained in:
Florian Goth 2004-03-30 20:43:00 +00:00 committed by Alexandre Julliard
parent 9191a9cd95
commit 37f5166bf4
2 changed files with 8 additions and 0 deletions

View File

@ -97,6 +97,10 @@ void WINAPI DOSVM_Int16Handler( CONTEXT86 *context )
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");
/* As a temporary measure, say that "nothing" is supported... */

View File

@ -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 */