mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
system.drv16: Use BOOL type where appropriate.
This commit is contained in:
parent
08acae5deb
commit
5e321b2c7f
1 changed files with 3 additions and 3 deletions
|
@ -46,7 +46,7 @@ static SYSTEM_TIMER SYS_Timers[NB_SYS_TIMERS];
|
|||
static int SYS_NbTimers = 0;
|
||||
static HANDLE SYS_timer;
|
||||
static HANDLE SYS_thread;
|
||||
static int SYS_timers_disabled;
|
||||
static BOOL SYS_timers_disabled;
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
|
@ -200,7 +200,7 @@ WORD WINAPI SYSTEM_KillSystemTimer( WORD timer )
|
|||
*/
|
||||
void WINAPI EnableSystemTimers16(void)
|
||||
{
|
||||
SYS_timers_disabled = 0;
|
||||
SYS_timers_disabled = FALSE;
|
||||
}
|
||||
|
||||
|
||||
|
@ -209,7 +209,7 @@ void WINAPI EnableSystemTimers16(void)
|
|||
*/
|
||||
void WINAPI DisableSystemTimers16(void)
|
||||
{
|
||||
SYS_timers_disabled = 1;
|
||||
SYS_timers_disabled = TRUE;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue