Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
517a93af
Commit
517a93af
authored
Nov 06, 2002
by
Patrik Stridvall
Committed by
Alexandre Julliard
Nov 06, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some issues found by winapi_check.
parent
a2156ead
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
41 additions
and
13 deletions
+41
-13
scanf.c
dlls/msvcrt/tests/scanf.c
+2
-1
msvideo16.c
dlls/msvideo/msvideo16.c
+1
-1
int09.c
dlls/winedos/int09.c
+1
-1
int10.c
dlls/winedos/int10.c
+3
-0
int16.c
dlls/winedos/int16.c
+1
-1
int17.c
dlls/winedos/int17.c
+1
-1
int20.c
dlls/winedos/int20.c
+1
-1
int21.c
dlls/winedos/int21.c
+1
-1
int29.c
dlls/winedos/int29.c
+1
-1
int33.c
dlls/winedos/int33.c
+1
-1
int67.c
dlls/winedos/int67.c
+1
-1
interrupts.c
dlls/winedos/interrupts.c
+26
-2
mmsystem.c
dlls/winmm/mmsystem.c
+1
-1
No files found.
dlls/msvcrt/tests/scanf.c
View file @
517a93af
...
...
@@ -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
)
...
...
dlls/msvideo/msvideo16.c
View file @
517a93af
...
...
@@ -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
*
...
...
dlls/winedos/int09.c
View file @
517a93af
...
...
@@ -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
...
...
dlls/winedos/int10.c
View file @
517a93af
...
...
@@ -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
;
...
...
dlls/winedos/int16.c
View file @
517a93af
...
...
@@ -39,7 +39,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
int
);
/**********************************************************************
* DOSVM_Int16Handler
* DOSVM_Int16Handler
(WINEDOS16.122)
*
* Handler for int 16h (keyboard)
*
...
...
dlls/winedos/int17.c
View file @
517a93af
...
...
@@ -28,7 +28,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
int
);
/**********************************************************************
* DOSVM_Int17Handler
* DOSVM_Int17Handler
(WINEDOS16.123)
*
* Handler for int 17h (printer - output character).
*/
...
...
dlls/winedos/int20.c
View file @
517a93af
...
...
@@ -24,7 +24,7 @@
#include "miscemu.h"
/**********************************************************************
* DOSVM_Int20Handler
* DOSVM_Int20Handler
(WINEDOS16.132)
*
* Handler for int 20h.
*/
...
...
dlls/winedos/int21.c
View file @
517a93af
...
...
@@ -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.
*/
...
...
dlls/winedos/int29.c
View file @
517a93af
...
...
@@ -26,7 +26,7 @@
#include "dosexe.h"
/**********************************************************************
* DOSVM_Int29Handler
* DOSVM_Int29Handler
(WINEDOS16.141)
*
* Handler for int 29h (fast console output)
*/
...
...
dlls/winedos/int33.c
View file @
517a93af
...
...
@@ -42,7 +42,7 @@ static struct
}
mouse_info
;
/**********************************************************************
* DOSVM_Int33Handler
* DOSVM_Int33Handler
(WINEDOS16.151)
*
* Handler for int 33h (MS MOUSE).
*/
...
...
dlls/winedos/int67.c
View file @
517a93af
...
...
@@ -321,7 +321,7 @@ static void EMS_restore_context( CONTEXT86 *context )
}
/**********************************************************************
* DOSVM_Int67Handler
* DOSVM_Int67Handler
(WINEDOS16.203)
*
* Handler for interrupt 67h EMS routines.
*/
...
...
dlls/winedos/interrupts.c
View file @
517a93af
...
...
@@ -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.
...
...
dlls/winmm/mmsystem.c
View file @
517a93af
...
...
@@ -2096,7 +2096,7 @@ HANDLE16 WINAPI mmThreadGetTask16(HANDLE16 hndl)
}
/**************************************************************************
*
WINE
_mmThreadEntryPoint (MMSYSTEM.2047)
*
__wine
_mmThreadEntryPoint (MMSYSTEM.2047)
*/
void
WINAPI
WINE_mmThreadEntryPoint
(
DWORD
_pmt
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment