Get rid of the ICOM_MSVTABLE_COMPAT support, g++ no longer requires
[wine/multimedia.git] / dlls / winedos / int2a.c
blobdd6f9607910e899456d44dd5403164e3fa3b6bce
1 /*
2 * DOS interrupt 2ah handler
3 */
5 #include <stdlib.h>
6 #include "dosexe.h"
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 */
21 break;
23 default:
24 INT_BARF( context, 0x2a );