wine/msdos/int29.c
Patrik Stridvall 33929be46f - Made sure that the files that contains the declarations
of implementated functions are included.
- Corrected mismatching prototypes.
- Cleaned up the include section.
2001-07-18 21:04:23 +00:00

23 lines
437 B
C

/*
* DOS interrupt 29h handler
*/
#include "config.h"
#include "winnt.h"
#include "console.h"
#include "miscemu.h"
/**********************************************************************
* INT_Int29Handler
*
* Handler for int 29h (fast console output)
*/
void WINAPI INT_Int29Handler( CONTEXT86 *context )
{
/* Yes, it seems that this is really all this interrupt does. */
CONSOLE_Write(AL_reg(context), 0, 0, 0);
}