Do not send WM_SIZING to 16-bit windows.
[wine.git] / msdos / int2a.c
blobe49a0dc689018e97afa69f9eab3b4dd922cecfbd
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
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 );