Restored MakeCriticalSectionGlobal that got lost somewhere.
[wine/multimedia.git] / msdos / int41.c
blob1506dad100fe8b81d91ee94e7b6e52530fbd8c9b
1 /*
2 * DOS interrupt 41h handler -- Windows Kernel Debugger
4 * Check debugsys.inc from the DDK for docu.
6 * Copyright 1998 Ulrich Weigand
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <stdio.h>
24 #include "miscemu.h"
25 #include "wine/debug.h"
27 WINE_DEFAULT_DEBUG_CHANNEL(int);
29 /***********************************************************************
30 * INT_Int41Handler (WPROCS.165)
33 void WINAPI INT_Int41Handler( CONTEXT86 *context )
35 if ( ISV86(context) )
37 /* Real-mode debugger services */
38 switch ( AX_reg(context) )
40 default:
41 INT_BARF( context, 0x41 );
42 break;
45 else
47 /* Protected-mode debugger services */
48 switch ( AX_reg(context) )
50 case 0x4f:
51 case 0x50:
52 case 0x150:
53 case 0x51:
54 case 0x52:
55 case 0x152:
56 case 0x59:
57 case 0x5a:
58 case 0x5b:
59 case 0x5c:
60 case 0x5d:
61 /* Notifies the debugger of a lot of stuff. We simply ignore it
62 for now, but some of the info might actually be useful ... */
63 break;
65 default:
66 INT_BARF( context, 0x41 );
67 break;