Added some stubs.
This commit is contained in:
parent
9191a9cd95
commit
37f5166bf4
|
@ -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");
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue