Move simple interrupt handlers to winedos.
[wine/multimedia.git] / dlls / winedos / int2a.c
blob8e7350fe99b2d03cc66b84ffbad6b36d627b33d0
1 /*
2 * DOS interrupt 2ah handler
3 */
5 #include <stdlib.h>
6 #include "msdos.h"
7 #include "miscemu.h"
8 #include "wine/debug.h"
10 WINE_DEFAULT_DEBUG_CHANNEL(int);
12 /**********************************************************************
13 * DOSVM_Int2aHandler (WINEDOS16.142)
15 * Handler for int 2ah (network).
17 void WINAPI DOSVM_Int2aHandler( CONTEXT86 *context )
19 switch(AH_reg(context))
21 case 0x00: /* NETWORK INSTALLATION CHECK */
22 break;
24 default:
25 INT_BARF( context, 0x2a );