Added a default program option in wine.conf in section [programs] key
[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 /* #define DEBUG_INT */
9 #include "debug.h"
10
11 /**********************************************************************
12  *          INT_Int2aHandler
13  *
14  * Handler for int 2ah (network).
15  */
16 void WINAPI INT_Int2aHandler( CONTEXT *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 }