Implemented Mousewheel support.
[wine/dcerpc.git] / msdos / int20.c
bloba818acfb6d3b0f2b77b5db97bbb84ff1337f4e84
1 /*
2 * DOS interrupt 20h handler (TERMINATE PROGRAM)
3 */
5 #include <stdlib.h>
6 #include "winbase.h"
7 #include "miscemu.h"
8 /* #define DEBUG_INT */
9 #include "debugtools.h"
10 #include "task.h"
12 /**********************************************************************
13 * INT_Int20Handler
15 * Handler for int 20h.
17 void WINAPI INT_Int20Handler( CONTEXT86 *context )
19 ExitProcess( 0 );