From fd75ec1dfe1b850fcea12d28b31f3f4349eaeb1d Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 4 Jan 2010 16:29:19 +0100 Subject: [PATCH] winedos: Remove some obsolete comments. --- dlls/winedos/dosvm.c | 12 ++++++------ dlls/winedos/fpu.c | 22 +++++++++++----------- dlls/winedos/int09.c | 2 +- dlls/winedos/int13.c | 2 +- dlls/winedos/int15.c | 2 +- dlls/winedos/int16.c | 2 +- dlls/winedos/int25.c | 2 +- dlls/winedos/int26.c | 2 +- dlls/winedos/int2f.c | 2 +- dlls/winedos/int31.c | 2 +- dlls/winedos/int33.c | 2 +- dlls/winedos/int67.c | 2 +- dlls/winedos/ioports.c | 2 +- 13 files changed, 28 insertions(+), 28 deletions(-) diff --git a/dlls/winedos/dosvm.c b/dlls/winedos/dosvm.c index 05c937133b2..d62a28b088c 100644 --- a/dlls/winedos/dosvm.c +++ b/dlls/winedos/dosvm.c @@ -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) { diff --git a/dlls/winedos/fpu.c b/dlls/winedos/fpu.c index 9643afbde00..733dfb705f5 100644 --- a/dlls/winedos/fpu.c +++ b/dlls/winedos/fpu.c @@ -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 diff --git a/dlls/winedos/int09.c b/dlls/winedos/int09.c index 0702287b4a1..91b7b5ea34b 100644 --- a/dlls/winedos/int09.c +++ b/dlls/winedos/int09.c @@ -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 diff --git a/dlls/winedos/int13.c b/dlls/winedos/int13.c index 6b2b00c83d8..b96d5e73095 100644 --- a/dlls/winedos/int13.c +++ b/dlls/winedos/int13.c @@ -180,7 +180,7 @@ static void INT13_ReadFloppyParams( CONTEXT86 *context ) /********************************************************************** - * DOSVM_Int13Handler (WINEDOS16.119) + * DOSVM_Int13Handler * * Handler for int 13h (disk I/O). */ diff --git a/dlls/winedos/int15.c b/dlls/winedos/int15.c index 24c9121ae03..bbbef3c4485 100644 --- a/dlls/winedos/int15.c +++ b/dlls/winedos/int15.c @@ -27,7 +27,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(int); /********************************************************************** - * DOSVM_Int15Handler (WINEDOS16.121) + * DOSVM_Int15Handler * * Handler for int 15h */ diff --git a/dlls/winedos/int16.c b/dlls/winedos/int16.c index 8fa5de03e98..47c94104c93 100644 --- a/dlls/winedos/int16.c +++ b/dlls/winedos/int16.c @@ -37,7 +37,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(int); /********************************************************************** - * DOSVM_Int16Handler (WINEDOS16.122) + * DOSVM_Int16Handler * * Handler for int 16h (keyboard) * diff --git a/dlls/winedos/int25.c b/dlls/winedos/int25.c index a0e5b10408b..c4588a3b32b 100644 --- a/dlls/winedos/int25.c +++ b/dlls/winedos/int25.c @@ -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). */ diff --git a/dlls/winedos/int26.c b/dlls/winedos/int26.c index a203882c542..6fb780faf59 100644 --- a/dlls/winedos/int26.c +++ b/dlls/winedos/int26.c @@ -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). */ diff --git a/dlls/winedos/int2f.c b/dlls/winedos/int2f.c index 13b86ee6cc9..cab7391796e 100644 --- a/dlls/winedos/int2f.c +++ b/dlls/winedos/int2f.c @@ -116,7 +116,7 @@ DWORD WINAPI GetVersion16(void) } /********************************************************************** - * DOSVM_Int2fHandler (WINEDOS16.147) + * DOSVM_Int2fHandler * * Handler for int 2fh (multiplex). */ diff --git a/dlls/winedos/int31.c b/dlls/winedos/int31.c index e8cc47b70c8..a0df8271769 100644 --- a/dlls/winedos/int31.c +++ b/dlls/winedos/int31.c @@ -955,7 +955,7 @@ BOOL DOSVM_CheckWrappers( CONTEXT86 *context ) } /********************************************************************** - * DOSVM_Int31Handler (WINEDOS16.149) + * DOSVM_Int31Handler * * Handler for int 31h (DPMI). */ diff --git a/dlls/winedos/int33.c b/dlls/winedos/int33.c index bacf105c16f..f111f5fbe03 100644 --- a/dlls/winedos/int33.c +++ b/dlls/winedos/int33.c @@ -71,7 +71,7 @@ static void INT33_ResetMouse( CONTEXT86 *context ) /********************************************************************** - * DOSVM_Int33Handler (WINEDOS16.151) + * DOSVM_Int33Handler * * Handler for int 33h (MS MOUSE). */ diff --git a/dlls/winedos/int67.c b/dlls/winedos/int67.c index 34013df35ba..6b461a54d54 100644 --- a/dlls/winedos/int67.c +++ b/dlls/winedos/int67.c @@ -320,7 +320,7 @@ static void EMS_restore_context( CONTEXT86 *context ) } /********************************************************************** - * DOSVM_Int67Handler (WINEDOS16.203) + * DOSVM_Int67Handler * * Handler for interrupt 67h EMS routines. */ diff --git a/dlls/winedos/ioports.c b/dlls/winedos/ioports.c index 57100461972..25e03e8eb36 100644 --- a/dlls/winedos/ioports.c +++ b/dlls/winedos/ioports.c @@ -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 ) {