Added missing includes to avoid warnings/errors.
[wine] / msdos / int29.c
1 /*
2  * DOS interrupt 29h handler
3  */
4
5 #include "config.h"
6 #include "wintypes.h"
7 #include "winnt.h"
8 #include "console.h"
9
10 /**********************************************************************
11  *          INT_Int29Handler
12  *
13  * Handler for int 29h (fast console output)
14  */
15 void WINAPI INT_Int29Handler( CONTEXT *context )
16 {
17    /* Yes, it seems that this is really all this interrupt does. */
18    CONSOLE_Write(AL_reg(context), 0, 0, 0);
19 }
20