mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 22:20:26 +00:00
Fixed some issues found by winapi_check.
This commit is contained in:
parent
a2156ead18
commit
517a93afe3
@ -18,7 +18,8 @@
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "stdio.h"
|
||||
#include <stdio.h>
|
||||
|
||||
#include "wine/test.h"
|
||||
|
||||
static void test_sscanf( void )
|
||||
|
@ -860,7 +860,7 @@ static LRESULT CALLBACK IC_CallTo16(HDRVR hdrv, HIC hic, UINT msg, LPARAM lp1,
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
* DllEntryPoint (MSVIDEO.2046)
|
||||
* DllEntryPoint (MSVIDEO.300)
|
||||
*
|
||||
* MSVIDEO DLL entry point
|
||||
*
|
||||
|
@ -141,7 +141,7 @@ void DOSVM_Int09UpdateKbdStatusFlags(BYTE scan, BOOL extended, BIOSDATA *data, B
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* DOSVM_Int09Handler
|
||||
* DOSVM_Int09Handler (WINEDOS16.109)
|
||||
*
|
||||
* Handler for int 09h.
|
||||
* See http://www.execpc.com/~geezer/osd/kbd/ for a very good description
|
||||
|
@ -50,6 +50,7 @@ static void BIOS_SetCursorPos(BIOSDATA*data,unsigned page,unsigned X,unsigned Y)
|
||||
|
||||
/**********************************************************************
|
||||
* DOSVM_Int10Handler (WPROCS.116)
|
||||
* DOSVM_Int10Handler (WINEDOS16.116)
|
||||
*
|
||||
* Handler for int 10h (video).
|
||||
*
|
||||
@ -333,6 +334,8 @@ static void DOSVM_Int10Handler_VESA( CONTEXT86 *context )
|
||||
}
|
||||
}
|
||||
|
||||
/**********************************************************************/
|
||||
|
||||
void WINAPI DOSVM_Int10Handler( CONTEXT86 *context )
|
||||
{
|
||||
BIOSDATA *data = BIOS_DATA;
|
||||
|
@ -39,7 +39,7 @@
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(int);
|
||||
|
||||
/**********************************************************************
|
||||
* DOSVM_Int16Handler
|
||||
* DOSVM_Int16Handler (WINEDOS16.122)
|
||||
*
|
||||
* Handler for int 16h (keyboard)
|
||||
*
|
||||
|
@ -28,7 +28,7 @@
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(int);
|
||||
|
||||
/**********************************************************************
|
||||
* DOSVM_Int17Handler
|
||||
* DOSVM_Int17Handler (WINEDOS16.123)
|
||||
*
|
||||
* Handler for int 17h (printer - output character).
|
||||
*/
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include "miscemu.h"
|
||||
|
||||
/**********************************************************************
|
||||
* DOSVM_Int20Handler
|
||||
* DOSVM_Int20Handler (WINEDOS16.132)
|
||||
*
|
||||
* Handler for int 20h.
|
||||
*/
|
||||
|
@ -70,7 +70,7 @@ void WINAPI DOSVM_Int21Handler_Ioctl( CONTEXT86 *context )
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* DOSVM_Int21Handler
|
||||
* DOSVM_Int21Handler (WINEDOS16.133)
|
||||
*
|
||||
* int 21h handler. Most calls are passed directly to DOS3Call.
|
||||
*/
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "dosexe.h"
|
||||
|
||||
/**********************************************************************
|
||||
* DOSVM_Int29Handler
|
||||
* DOSVM_Int29Handler (WINEDOS16.141)
|
||||
*
|
||||
* Handler for int 29h (fast console output)
|
||||
*/
|
||||
|
@ -42,7 +42,7 @@ static struct
|
||||
} mouse_info;
|
||||
|
||||
/**********************************************************************
|
||||
* DOSVM_Int33Handler
|
||||
* DOSVM_Int33Handler (WINEDOS16.151)
|
||||
*
|
||||
* Handler for int 33h (MS MOUSE).
|
||||
*/
|
||||
|
@ -321,7 +321,7 @@ static void EMS_restore_context( CONTEXT86 *context )
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* DOSVM_Int67Handler
|
||||
* DOSVM_Int67Handler (WINEDOS16.203)
|
||||
*
|
||||
* Handler for interrupt 67h EMS routines.
|
||||
*/
|
||||
|
@ -24,7 +24,31 @@
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(int);
|
||||
|
||||
/*
|
||||
/***********************************************************************
|
||||
* DOSVM_Int11Handler (WINEDOS16.117)
|
||||
* DOSVM_Int12Handler (WINEDOS16.118)
|
||||
* DOSVM_Int13Handler (WINEDOS16.119)
|
||||
* DOSVM_Int15Handler (WINEDOS16.121)
|
||||
* DOSVM_Int1aHandler (WINEDOS16.126)
|
||||
* DOSVM_Int25Handler (WINEDOS16.137)
|
||||
* DOSVM_Int26Handler (WINEDOS16.138)
|
||||
* DOSVM_Int2aHandler (WINEDOS16.142)
|
||||
* DOSVM_Int2fHandler (WINEDOS16.147)
|
||||
* DOSVM_Int34Handler (WINEDOS16.152)
|
||||
* DOSVM_Int35Handler (WINEDOS16.153)
|
||||
* DOSVM_Int36Handler (WINEDOS16.154)
|
||||
* DOSVM_Int37Handler (WINEDOS16.155)
|
||||
* DOSVM_Int38Handler (WINEDOS16.156)
|
||||
* DOSVM_Int39Handler (WINEDOS16.157)
|
||||
* DOSVM_Int3aHandler (WINEDOS16.158)
|
||||
* DOSVM_Int3bHandler (WINEDOS16.159)
|
||||
* DOSVM_Int3cHandler (WINEDOS16.160)
|
||||
* DOSVM_Int3dHandler (WINEDOS16.161)
|
||||
* DOSVM_Int3eHandler (WINEDOS16.162)
|
||||
* DOSVM_Int41Handler (WINEDOS16.165)
|
||||
* DOSVM_Int4bHandler (WINEDOS16.175)
|
||||
* DOSVM_Int5cHandler (WINEDOS16.192)
|
||||
*
|
||||
* FIXME: Interrupt handlers for interrupts implemented in other DLLs.
|
||||
* These functions should be removed when the interrupt handlers have
|
||||
* been moved to winedos.
|
||||
@ -89,7 +113,7 @@ static const INTPROC DOSVM_VectorsBuiltin[] =
|
||||
#define FIRST_INTERRUPT 100
|
||||
|
||||
/**********************************************************************
|
||||
* DOSVM_DefaultHandler
|
||||
* DOSVM_DefaultHandler (WINEDOS16.356)
|
||||
*
|
||||
* Default interrupt handler. This will be used to emulate all
|
||||
* interrupts that don't have their own interrupt handler.
|
||||
|
@ -2096,7 +2096,7 @@ HANDLE16 WINAPI mmThreadGetTask16(HANDLE16 hndl)
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
* WINE_mmThreadEntryPoint (MMSYSTEM.2047)
|
||||
* __wine_mmThreadEntryPoint (MMSYSTEM.2047)
|
||||
*/
|
||||
void WINAPI WINE_mmThreadEntryPoint(DWORD _pmt)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user