mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:54:13 +00:00
winedos: DOSVM_GetTimer() is not used so remove it.
This commit is contained in:
parent
c54031960a
commit
8396dad5c2
2 changed files with 0 additions and 22 deletions
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue