Don't return from overlapped ReadFile on EAGAIN and other non-fatal
[wine/gsoc_dplay.git] / dlls / winedos / int29.c
blob65d20a2da3762e33606b09b7637bd28ff178b295
1 /*
2 * DOS interrupt 29h handler
3 */
5 #include "config.h"
7 #include "winnt.h"
9 #include "console.h"
10 #include "miscemu.h"
12 /**********************************************************************
13 * DOSVM_Int29Handler
15 * Handler for int 29h (fast console output)
17 void WINAPI DOSVM_Int29Handler( CONTEXT86 *context )
19 /* Yes, it seems that this is really all this interrupt does. */
20 CONSOLE_Write(AL_reg(context), 0, 0, 0);