Added some stubs.

diff --git a/dlls/winedos/int16.c b/dlls/winedos/int16.c
index d683842..40379fc 100644
--- a/dlls/winedos/int16.c
+++ b/dlls/winedos/int16.c
@@ -96,6 +96,10 @@
    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 fb6ca06..65a6a72 100644
--- a/dlls/winedos/int17.c
+++ b/dlls/winedos/int17.c
@@ -37,6 +37,10 @@
 {
     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 */