Optimized away more includes, readded some #includes for necessary
[wine] / msdos / int2a.c
1 /*
2  * DOS interrupt 2ah handler
3  */
4
5 #include <stdlib.h>
6 #include "msdos.h"
7 #include "miscemu.h"
8 #include "debug.h"
9
10 /**********************************************************************
11  *          INT_Int2aHandler
12  *
13  * Handler for int 2ah (network).
14  */
15 void WINAPI INT_Int2aHandler( CONTEXT *context )
16 {
17     switch(AH_reg(context))
18     {
19     case 0x00:                             /* NETWORK INSTALLATION CHECK */
20         break;
21                 
22     default:
23         INT_BARF( context, 0x2a );
24     }
25 }