winedos: Remove some obsolete comments.

This commit is contained in:
Alexandre Julliard 2010-01-04 16:29:19 +01:00
parent c7a57ee1a1
commit fd75ec1dfe
13 changed files with 28 additions and 28 deletions

View File

@ -275,7 +275,7 @@ void DOSVM_SendQueuedEvents( CONTEXT86 *context )
#ifdef MZ_SUPPORTED #ifdef MZ_SUPPORTED
/*********************************************************************** /***********************************************************************
* QueueEvent (WINEDOS.@) * DOSVM_QueueEvent
*/ */
void DOSVM_QueueEvent( INT irq, INT priority, DOSRELAY relay, LPVOID data) 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) 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 */ #else /* !MZ_SUPPORTED */
/*********************************************************************** /***********************************************************************
* Enter (WINEDOS.@) * DOSVM_Enter
*/ */
INT DOSVM_Enter( CONTEXT86 *context ) INT DOSVM_Enter( CONTEXT86 *context )
{ {
@ -677,17 +677,17 @@ INT DOSVM_Enter( CONTEXT86 *context )
} }
/*********************************************************************** /***********************************************************************
* Wait (WINEDOS.@) * DOSVM_Wait
*/ */
void DOSVM_Wait( CONTEXT86 *waitctx ) { } void DOSVM_Wait( CONTEXT86 *waitctx ) { }
/*********************************************************************** /***********************************************************************
* OutPIC (WINEDOS.@) * DOSVM_PIC_ioport_out
*/ */
void DOSVM_PIC_ioport_out( WORD port, BYTE val) {} void DOSVM_PIC_ioport_out( WORD port, BYTE val) {}
/*********************************************************************** /***********************************************************************
* QueueEvent (WINEDOS.@) * DOSVM_QueueEvent
*/ */
void DOSVM_QueueEvent( INT irq, INT priority, DOSRELAY relay, LPVOID data) void DOSVM_QueueEvent( INT irq, INT priority, DOSRELAY relay, LPVOID data)
{ {

View File

@ -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). * 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). * 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). * 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). * 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). * 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). * 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). * 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). * 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). * 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). * 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. * FLOATING POINT EMULATION -- Borland "Shortcut" call.
* The two bytes following the int 3E instruction are * The two bytes following the int 3E instruction are

View File

@ -141,7 +141,7 @@ static void DOSVM_Int09UpdateKbdStatusFlags(BYTE scan, BOOL extended, BIOSDATA *
} }
/********************************************************************** /**********************************************************************
* DOSVM_Int09Handler (WINEDOS16.109) * DOSVM_Int09Handler
* *
* Handler for int 09h. * Handler for int 09h.
* See http://www.execpc.com/~geezer/osd/kbd/ for a very good description * See http://www.execpc.com/~geezer/osd/kbd/ for a very good description

View File

@ -180,7 +180,7 @@ static void INT13_ReadFloppyParams( CONTEXT86 *context )
/********************************************************************** /**********************************************************************
* DOSVM_Int13Handler (WINEDOS16.119) * DOSVM_Int13Handler
* *
* Handler for int 13h (disk I/O). * Handler for int 13h (disk I/O).
*/ */

View File

@ -27,7 +27,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(int);
/********************************************************************** /**********************************************************************
* DOSVM_Int15Handler (WINEDOS16.121) * DOSVM_Int15Handler
* *
* Handler for int 15h * Handler for int 15h
*/ */

View File

@ -37,7 +37,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(int); WINE_DEFAULT_DEBUG_CHANNEL(int);
/********************************************************************** /**********************************************************************
* DOSVM_Int16Handler (WINEDOS16.122) * DOSVM_Int16Handler
* *
* Handler for int 16h (keyboard) * Handler for int 16h (keyboard)
* *

View File

@ -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). * Handler for int 25h (absolute disk read).
*/ */

View File

@ -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). * Handler for int 26h (absolute disk write).
*/ */

View File

@ -116,7 +116,7 @@ DWORD WINAPI GetVersion16(void)
} }
/********************************************************************** /**********************************************************************
* DOSVM_Int2fHandler (WINEDOS16.147) * DOSVM_Int2fHandler
* *
* Handler for int 2fh (multiplex). * Handler for int 2fh (multiplex).
*/ */

View File

@ -955,7 +955,7 @@ BOOL DOSVM_CheckWrappers( CONTEXT86 *context )
} }
/********************************************************************** /**********************************************************************
* DOSVM_Int31Handler (WINEDOS16.149) * DOSVM_Int31Handler
* *
* Handler for int 31h (DPMI). * Handler for int 31h (DPMI).
*/ */

View File

@ -71,7 +71,7 @@ static void INT33_ResetMouse( CONTEXT86 *context )
/********************************************************************** /**********************************************************************
* DOSVM_Int33Handler (WINEDOS16.151) * DOSVM_Int33Handler
* *
* Handler for int 33h (MS MOUSE). * Handler for int 33h (MS MOUSE).
*/ */

View File

@ -320,7 +320,7 @@ static void EMS_restore_context( CONTEXT86 *context )
} }
/********************************************************************** /**********************************************************************
* DOSVM_Int67Handler (WINEDOS16.203) * DOSVM_Int67Handler
* *
* Handler for interrupt 67h EMS routines. * Handler for interrupt 67h EMS routines.
*/ */

View File

@ -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 ) void WINAPI DOSVM_outport( int port, int size, DWORD value )
{ {