Well, SetParent doesn't work properly at all, but at least it must preserve
[wine.git] / msdos / int29.c
blobcf50a0bd1403b50f4b3a72b8c3ef28db70bc7589
1 /*
2 * DOS interrupt 29h handler
3 */
5 #include "config.h"
6 #include "windef.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( CONTEXT86 *context )
17 /* Yes, it seems that this is really all this interrupt does. */
18 CONSOLE_Write(AL_reg(context), 0, 0, 0);