Uses Xrender extension to allow client side font rendering.
[wine] / dlls / winedos / int20.c
1 /*
2  * DOS interrupt 20h handler (TERMINATE PROGRAM)
3  */
4
5 #include <stdlib.h>
6 #include "winbase.h"
7 #include "dosexe.h"
8 #include "miscemu.h"
9
10 /**********************************************************************
11  *          DOSVM_Int20Handler
12  *
13  * Handler for int 20h.
14  */
15 void WINAPI DOSVM_Int20Handler( CONTEXT86 *context )
16 {
17     MZ_Exit( context, TRUE, 0 );
18 }