CoGetClassObject should complain about not being able to do
[wine.git] / msdos / int2a.c
blobecef77a6b3b2e16f847a711506e860dbdc363ccf
1 /*
2 * DOS interrupt 2ah handler
3 */
5 #include <stdlib.h>
6 #include "msdos.h"
7 #include "miscemu.h"
8 #include "debugtools.h"
10 /**********************************************************************
11 * INT_Int2aHandler
13 * Handler for int 2ah (network).
15 void WINAPI INT_Int2aHandler( CONTEXT86 *context )
17 switch(AH_reg(context))
19 case 0x00: /* NETWORK INSTALLATION CHECK */
20 break;
22 default:
23 INT_BARF( context, 0x2a );