mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
61fece0590
Stridvall.
20 lines
394 B
C
20 lines
394 B
C
/*
|
|
* DOS interrupt 20h handler (TERMINATE PROGRAM)
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include "winbase.h"
|
|
#include "miscemu.h"
|
|
/* #define DEBUG_INT */
|
|
#include "debugtools.h"
|
|
#include "task.h"
|
|
|
|
/**********************************************************************
|
|
* INT_Int20Handler
|
|
*
|
|
* Handler for int 20h.
|
|
*/
|
|
void WINAPI INT_Int20Handler( CONTEXT86 *context )
|
|
{
|
|
ExitProcess( 0 );
|
|
}
|