projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Bug fix.
[wine]
/
msdos
/
int20.c
1
/*
2
* DOS interrupt 20h handler (TERMINATE PROGRAM)
3
*/
4
5
#include <stdlib.h>
6
#include "winbase.h"
7
#include "miscemu.h"
8
/* #define DEBUG_INT */
9
#include "debug.h"
10
#include "task.h"
11
12
/**********************************************************************
13
* INT_Int20Handler
14
*
15
* Handler for int 20h.
16
*/
17
void WINAPI INT_Int20Handler( CONTEXT *context )
18
{
19
ExitProcess( 0 );
20
}