Added macros to header file for easier function calling.
[wine/multimedia.git] / msdos / int29.c
blob2ae572cb592f1223ab65ea44d15ec38b0b652a5b
1 /*
2 * DOS interrupt 29h handler
3 */
5 #include "config.h"
6 #include "wintypes.h"
7 #include "winnt.h"
8 #include "console.h"
10 /**********************************************************************
11 * INT_Int29Handler
13 * Handler for int 29h (fast console output)
15 void WINAPI INT_Int29Handler( CONTEXT *context )
17 /* Yes, it seems that this is really all this interrupt does. */
18 CONSOLE_Write(AL_reg(context), 0, 0, 0);