winedos: Make some data const.
[wine] / dlls / winedos / int2a.c
1 /*
2  * DOS interrupt 2ah handler
3  */
4
5 #include <stdlib.h>
6 #include "dosexe.h"
7 #include "wine/debug.h"
8
9 WINE_DEFAULT_DEBUG_CHANNEL(int);
10
11 /**********************************************************************
12  *         DOSVM_Int2aHandler (WINEDOS16.142)
13  *
14  * Handler for int 2ah (network).
15  */
16 void WINAPI DOSVM_Int2aHandler( CONTEXT86 *context )
17 {
18     switch(AH_reg(context))
19     {
20     case 0x00:                             /* NETWORK INSTALLATION CHECK */
21         break;
22
23     default:
24        INT_BARF( context, 0x2a );
25     }
26 }