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
fd75ec1d
Commit
fd75ec1d
authored
Jan 04, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedos: Remove some obsolete comments.
parent
c7a57ee1
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
28 additions
and
28 deletions
+28
-28
dosvm.c
dlls/winedos/dosvm.c
+6
-6
fpu.c
dlls/winedos/fpu.c
+11
-11
int09.c
dlls/winedos/int09.c
+1
-1
int13.c
dlls/winedos/int13.c
+1
-1
int15.c
dlls/winedos/int15.c
+1
-1
int16.c
dlls/winedos/int16.c
+1
-1
int25.c
dlls/winedos/int25.c
+1
-1
int26.c
dlls/winedos/int26.c
+1
-1
int2f.c
dlls/winedos/int2f.c
+1
-1
int31.c
dlls/winedos/int31.c
+1
-1
int33.c
dlls/winedos/int33.c
+1
-1
int67.c
dlls/winedos/int67.c
+1
-1
ioports.c
dlls/winedos/ioports.c
+1
-1
No files found.
dlls/winedos/dosvm.c
View file @
fd75ec1d
...
...
@@ -275,7 +275,7 @@ void DOSVM_SendQueuedEvents( CONTEXT86 *context )
#ifdef MZ_SUPPORTED
/***********************************************************************
*
QueueEvent (WINEDOS.@)
*
DOSVM_QueueEvent
*/
void
DOSVM_QueueEvent
(
INT
irq
,
INT
priority
,
DOSRELAY
relay
,
LPVOID
data
)
{
...
...
@@ -616,7 +616,7 @@ INT DOSVM_Enter( CONTEXT86 *context )
}
/***********************************************************************
*
OutPIC (WINEDOS.@)
*
DOSVM_PIC_ioport_out
*/
void
DOSVM_PIC_ioport_out
(
WORD
port
,
BYTE
val
)
{
...
...
@@ -668,7 +668,7 @@ void DOSVM_PIC_ioport_out( WORD port, BYTE val)
#else
/* !MZ_SUPPORTED */
/***********************************************************************
*
Enter (WINEDOS.@)
*
DOSVM_Enter
*/
INT
DOSVM_Enter
(
CONTEXT86
*
context
)
{
...
...
@@ -677,17 +677,17 @@ INT DOSVM_Enter( CONTEXT86 *context )
}
/***********************************************************************
*
Wait (WINEDOS.@)
*
DOSVM_Wait
*/
void
DOSVM_Wait
(
CONTEXT86
*
waitctx
)
{
}
/***********************************************************************
*
OutPIC (WINEDOS.@)
*
DOSVM_PIC_ioport_out
*/
void
DOSVM_PIC_ioport_out
(
WORD
port
,
BYTE
val
)
{}
/***********************************************************************
*
QueueEvent (WINEDOS.@)
*
DOSVM_QueueEvent
*/
void
DOSVM_QueueEvent
(
INT
irq
,
INT
priority
,
DOSRELAY
relay
,
LPVOID
data
)
{
...
...
dlls/winedos/fpu.c
View file @
fd75ec1d
...
...
@@ -33,7 +33,7 @@ static void FPU_ModifyCode(CONTEXT86 *context, BYTE Opcode);
/**********************************************************************
* DOSVM_Int34Handler
(WINEDOS16.152)
* DOSVM_Int34Handler
*
* Handler for int 34 (FLOATING POINT EMULATION - Opcode 0xd8).
*
...
...
@@ -48,7 +48,7 @@ void WINAPI DOSVM_Int34Handler(CONTEXT86 *context)
/**********************************************************************
* DOSVM_Int35Handler
(WINEDOS16.153)
* DOSVM_Int35Handler
*
* Handler for int 35 (FLOATING POINT EMULATION - Opcode 0xd9).
*
...
...
@@ -63,7 +63,7 @@ void WINAPI DOSVM_Int35Handler(CONTEXT86 *context)
/**********************************************************************
* DOSVM_Int36Handler
(WINEDOS16.154)
* DOSVM_Int36Handler
*
* Handler for int 36 (FLOATING POINT EMULATION - Opcode 0xda).
*
...
...
@@ -78,7 +78,7 @@ void WINAPI DOSVM_Int36Handler(CONTEXT86 *context)
/**********************************************************************
* DOSVM_Int37Handler
(WINEDOS16.155)
* DOSVM_Int37Handler
*
* Handler for int 37 (FLOATING POINT EMULATION - Opcode 0xdb).
*
...
...
@@ -93,7 +93,7 @@ void WINAPI DOSVM_Int37Handler(CONTEXT86 *context)
/**********************************************************************
* DOSVM_Int38Handler
(WINEDOS16.156)
* DOSVM_Int38Handler
*
* Handler for int 38 (FLOATING POINT EMULATION - Opcode 0xdc).
*
...
...
@@ -111,7 +111,7 @@ void WINAPI DOSVM_Int38Handler(CONTEXT86 *context)
/**********************************************************************
* DOSVM_Int39Handler
(WINEDOS16.157)
* DOSVM_Int39Handler
*
* Handler for int 39 (FLOATING POINT EMULATION - Opcode 0xdd).
*
...
...
@@ -126,7 +126,7 @@ void WINAPI DOSVM_Int39Handler(CONTEXT86 *context)
/**********************************************************************
* DOSVM_Int3aHandler
(WINEDOS16.158)
* DOSVM_Int3aHandler
*
* Handler for int 3a (FLOATING POINT EMULATION - Opcode 0xde).
*
...
...
@@ -141,7 +141,7 @@ void WINAPI DOSVM_Int3aHandler(CONTEXT86 *context)
/**********************************************************************
* DOSVM_Int3bHandler
(WINEDOS16.159)
* DOSVM_Int3bHandler
*
* Handler for int 3B (FLOATING POINT EMULATION - Opcode 0xdf).
*
...
...
@@ -156,7 +156,7 @@ void WINAPI DOSVM_Int3bHandler(CONTEXT86 *context)
/**********************************************************************
* DOSVM_Int3cHandler
(WINEDOS16.160)
* DOSVM_Int3cHandler
*
* Handler for int 3C (FLOATING POINT EMULATION - INSTRUCTIONS WITH SEGMENT OVERRIDE).
*
...
...
@@ -179,7 +179,7 @@ void WINAPI DOSVM_Int3cHandler(CONTEXT86 *context)
/**********************************************************************
* DOSVM_Int3dHandler
(WINEDOS16.161)
* DOSVM_Int3dHandler
*
* Handler for int 3D (FLOATING POINT EMULATION - Standalone FWAIT).
*
...
...
@@ -193,7 +193,7 @@ void WINAPI DOSVM_Int3dHandler(CONTEXT86 *context)
/**********************************************************************
* DOSVM_Int3eHandler
(WINEDOS16.162)
* DOSVM_Int3eHandler
*
* FLOATING POINT EMULATION -- Borland "Shortcut" call.
* The two bytes following the int 3E instruction are
...
...
dlls/winedos/int09.c
View file @
fd75ec1d
...
...
@@ -141,7 +141,7 @@ static void DOSVM_Int09UpdateKbdStatusFlags(BYTE scan, BOOL extended, BIOSDATA *
}
/**********************************************************************
* DOSVM_Int09Handler
(WINEDOS16.109)
* DOSVM_Int09Handler
*
* Handler for int 09h.
* See http://www.execpc.com/~geezer/osd/kbd/ for a very good description
...
...
dlls/winedos/int13.c
View file @
fd75ec1d
...
...
@@ -180,7 +180,7 @@ static void INT13_ReadFloppyParams( CONTEXT86 *context )
/**********************************************************************
* DOSVM_Int13Handler
(WINEDOS16.119)
* DOSVM_Int13Handler
*
* Handler for int 13h (disk I/O).
*/
...
...
dlls/winedos/int15.c
View file @
fd75ec1d
...
...
@@ -27,7 +27,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(int);
/**********************************************************************
* DOSVM_Int15Handler
(WINEDOS16.121)
* DOSVM_Int15Handler
*
* Handler for int 15h
*/
...
...
dlls/winedos/int16.c
View file @
fd75ec1d
...
...
@@ -37,7 +37,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
int
);
/**********************************************************************
* DOSVM_Int16Handler
(WINEDOS16.122)
* DOSVM_Int16Handler
*
* Handler for int 16h (keyboard)
*
...
...
dlls/winedos/int25.c
View file @
fd75ec1d
...
...
@@ -76,7 +76,7 @@ BOOL DOSVM_RawRead(BYTE drive, DWORD begin, DWORD nr_sect, BYTE *dataptr, BOOL f
/**********************************************************************
* DOSVM_Int25Handler
(WINEDOS16.137)
* DOSVM_Int25Handler
*
* Handler for int 25h (absolute disk read).
*/
...
...
dlls/winedos/int26.c
View file @
fd75ec1d
...
...
@@ -65,7 +65,7 @@ BOOL DOSVM_RawWrite(BYTE drive, DWORD begin, DWORD nr_sect, BYTE *dataptr, BOOL
/**********************************************************************
* DOSVM_Int26Handler
(WINEDOS16.138)
* DOSVM_Int26Handler
*
* Handler for int 26h (absolute disk write).
*/
...
...
dlls/winedos/int2f.c
View file @
fd75ec1d
...
...
@@ -116,7 +116,7 @@ DWORD WINAPI GetVersion16(void)
}
/**********************************************************************
* DOSVM_Int2fHandler
(WINEDOS16.147)
* DOSVM_Int2fHandler
*
* Handler for int 2fh (multiplex).
*/
...
...
dlls/winedos/int31.c
View file @
fd75ec1d
...
...
@@ -955,7 +955,7 @@ BOOL DOSVM_CheckWrappers( CONTEXT86 *context )
}
/**********************************************************************
* DOSVM_Int31Handler
(WINEDOS16.149)
* DOSVM_Int31Handler
*
* Handler for int 31h (DPMI).
*/
...
...
dlls/winedos/int33.c
View file @
fd75ec1d
...
...
@@ -71,7 +71,7 @@ static void INT33_ResetMouse( CONTEXT86 *context )
/**********************************************************************
* DOSVM_Int33Handler
(WINEDOS16.151)
* DOSVM_Int33Handler
*
* Handler for int 33h (MS MOUSE).
*/
...
...
dlls/winedos/int67.c
View file @
fd75ec1d
...
...
@@ -320,7 +320,7 @@ static void EMS_restore_context( CONTEXT86 *context )
}
/**********************************************************************
* DOSVM_Int67Handler
(WINEDOS16.203)
* DOSVM_Int67Handler
*
* Handler for interrupt 67h EMS routines.
*/
...
...
dlls/winedos/ioports.c
View file @
fd75ec1d
...
...
@@ -927,7 +927,7 @@ DWORD WINAPI DOSVM_inport( int port, int size )
/**********************************************************************
*
outport (WINEDOS.@)
*
DOSVM_outport
*/
void
WINAPI
DOSVM_outport
(
int
port
,
int
size
,
DWORD
value
)
{
...
...
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