Bug fix.
[wine] / msdos / int17.c
1 /*
2  * BIOS interrupt 17h handler
3  */
4
5 #include <stdlib.h>
6
7 #include "miscemu.h"
8 #include "debug.h"
9 #include "msdos.h"
10 #include "drive.h"
11 #include "winnt.h"
12
13 /**********************************************************************
14  *          INT_Int17Handler
15  *
16  * Handler for int 17h (printer - output character).
17  */
18 void WINAPI INT_Int17Handler( CONTEXT *context )
19 {
20     switch( AH_reg(context) )
21     {
22         case 0x01:              /* PRINTER - INITIALIZE */
23             FIXME(int17, "Initialize Printer - Not Supported\n");
24             AH_reg(context) = 0; /* time out */
25             break;
26         case 0x02:              /* PRINTER - GET STATUS */
27             FIXME(int17, "Get Printer Status - Not Supported\n");
28             break;
29         default:
30             AH_reg(context) = 0; /* time out */
31             INT_BARF( context, 0x17 );
32     }
33 }