Allow the size of bitmaps to be changed after toolbar buttons have
[wine.git] / msdos / int5c.c
blobfeb1c7c71b529d61c973fefa83cb24103ec600e9
1 /*
2 * NetBIOS interrupt handling
4 * Copyright 1995 Alexandre Julliard, Alex Korobka
5 */
7 #include "ldt.h"
8 #include "miscemu.h"
9 #include "debugtools.h"
11 DEFAULT_DEBUG_CHANNEL(int)
14 /***********************************************************************
15 * NetBIOSCall (KERNEL.103)
17 * Also handler for interrupt 5c.
19 void WINAPI NetBIOSCall16( CONTEXT86 *context )
21 BYTE* ptr;
22 ptr = (BYTE*) PTR_SEG_OFF_TO_LIN(ES_reg(context),BX_reg(context));
23 FIXME("(%p): command code %02x (ignored)\n",context, *ptr);
24 AL_reg(context) = *(ptr+0x01) = 0xFB; /* NetBIOS emulator not found */