A couple of optimizations to avoid some server calls in WIN_FindWndPtr
[wine/multimedia.git] / msdos / int2a.c
blobfe8e5ce877f2a11e7f6f8ef4edf388ea9b358fc4
1 /*
2 * DOS interrupt 2ah handler
3 */
5 #include <stdlib.h>
6 #include "msdos.h"
7 #include "miscemu.h"
8 #include "debugtools.h"
10 DEFAULT_DEBUG_CHANNEL(int);
12 /**********************************************************************
13 * INT_Int2aHandler (WPROCS.142)
15 * Handler for int 2ah (network).
17 void WINAPI INT_Int2aHandler( CONTEXT86 *context )
19 switch(AH_reg(context))
21 case 0x00: /* NETWORK INSTALLATION CHECK */
22 break;
24 default:
25 INT_BARF( context, 0x2a );