2 * DOS interrupt 2ah handler
7 #include "wine/debug.h"
9 WINE_DEFAULT_DEBUG_CHANNEL(int);
11 /**********************************************************************
12 * DOSVM_Int2aHandler (WINEDOS16.142)
14 * Handler for int 2ah (network).
16 void WINAPI
DOSVM_Int2aHandler( CONTEXT86
*context
)
18 switch(AH_reg(context
))
20 case 0x00: /* NETWORK INSTALLATION CHECK */
24 INT_BARF( context
, 0x2a );