2001-12-04 20:54:44 +01:00
|
|
|
/*
|
|
|
|
* DOS interrupt 20h handler (TERMINATE PROGRAM)
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* Copyright 1997 Andreas Mohr
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2001-12-04 20:54:44 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "dosexe.h"
|
2003-09-02 02:52:36 +02:00
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(int);
|
2001-12-04 20:54:44 +01:00
|
|
|
|
|
|
|
/**********************************************************************
|
2002-11-06 20:57:49 +01:00
|
|
|
* DOSVM_Int20Handler (WINEDOS16.132)
|
2001-12-04 20:54:44 +01:00
|
|
|
*
|
|
|
|
* Handler for int 20h.
|
|
|
|
*/
|
|
|
|
void WINAPI DOSVM_Int20Handler( CONTEXT86 *context )
|
|
|
|
{
|
2003-09-02 02:52:36 +02:00
|
|
|
if (DOSVM_IsWin16())
|
|
|
|
ExitThread( 0 );
|
|
|
|
else if(ISV86(context))
|
2002-10-30 00:09:30 +01:00
|
|
|
MZ_Exit( context, TRUE, 0 );
|
|
|
|
else
|
2003-09-02 02:52:36 +02:00
|
|
|
ERR( "Called from DOS protected mode\n" );
|
2001-12-04 20:54:44 +01:00
|
|
|
}
|