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