Delay import of user32 to allow debugging crashes in user init code.
[wine/multimedia.git] / msdos / int5c.c
blobea4653e9b28ba20ccae55dd840b9d7f81027aba2
1 /*
2 * NetBIOS interrupt handling
4 * Copyright 1995 Alexandre Julliard, Alex Korobka
5 */
7 #include "miscemu.h"
8 #include "debugtools.h"
10 DEFAULT_DEBUG_CHANNEL(int);
13 /***********************************************************************
14 * NetBIOSCall (KERNEL.103)
16 * Also handler for interrupt 5c.
18 void WINAPI NetBIOSCall16( CONTEXT86 *context )
20 BYTE* ptr;
21 ptr = MapSL( MAKESEGPTR(context->SegEs,BX_reg(context)) );
22 FIXME("(%p): command code %02x (ignored)\n",context, *ptr);
23 AL_reg(context) = *(ptr+0x01) = 0xFB; /* NetBIOS emulator not found */