mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
617955db88
context. Added #ifdef __i386__ around accesses to 386 registers in the generic CONTEXT structure.
25 lines
484 B
C
25 lines
484 B
C
/*
|
|
* DOS interrupt 2ah handler
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include "msdos.h"
|
|
#include "miscemu.h"
|
|
#include "debug.h"
|
|
|
|
/**********************************************************************
|
|
* INT_Int2aHandler
|
|
*
|
|
* Handler for int 2ah (network).
|
|
*/
|
|
void WINAPI INT_Int2aHandler( CONTEXT86 *context )
|
|
{
|
|
switch(AH_reg(context))
|
|
{
|
|
case 0x00: /* NETWORK INSTALLATION CHECK */
|
|
break;
|
|
|
|
default:
|
|
INT_BARF( context, 0x2a );
|
|
}
|
|
}
|