winedos: DOSVM_GetTimer() is not used so remove it.

This commit is contained in:
Francois Gouget 2009-06-15 10:52:36 +02:00 committed by Alexandre Julliard
parent c54031960a
commit 8396dad5c2
2 changed files with 0 additions and 22 deletions

View File

@ -363,7 +363,6 @@ extern DWORD WINAPI DOSVM_Loop( HANDLE hThread );
extern void WINAPI DOSVM_QueueEvent( INT irq, INT priority, DOSRELAY relay, LPVOID data );
extern void WINAPI DOSVM_PIC_ioport_out( WORD port, BYTE val );
extern void WINAPI DOSVM_SetTimer( UINT ticks );
extern UINT WINAPI DOSVM_GetTimer( void );
/* devices.c */
extern void DOSDEV_InstallDOSDevices(void);

View File

@ -141,27 +141,6 @@ static void WINAPI TIMER_DoSetTimer( ULONG_PTR arg )
}
/***********************************************************************
* DOSVM_GetTimer
*/
UINT WINAPI DOSVM_GetTimer( void )
{
if (!DOSVM_IsWin16())
{
DWORD millis = GetTickCount() - TIMER_stamp;
INT ticks = MulDiv( millis, TIMER_FREQ, 1000 );
/* sanity check - tick wrap or suspended process or update race */
if (ticks < 0 || ticks >= TIMER_ticks)
ticks = 0;
return ticks;
}
return 0;
}
/***********************************************************************
* DOSVM_SetTimer
*/