Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
5e321b2c
Commit
5e321b2c
authored
Nov 24, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Nov 25, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
system.drv16: Use BOOL type where appropriate.
parent
08acae5d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
system.c
dlls/system.drv16/system.c
+3
-3
No files found.
dlls/system.drv16/system.c
View file @
5e321b2c
...
@@ -46,7 +46,7 @@ static SYSTEM_TIMER SYS_Timers[NB_SYS_TIMERS];
...
@@ -46,7 +46,7 @@ static SYSTEM_TIMER SYS_Timers[NB_SYS_TIMERS];
static
int
SYS_NbTimers
=
0
;
static
int
SYS_NbTimers
=
0
;
static
HANDLE
SYS_timer
;
static
HANDLE
SYS_timer
;
static
HANDLE
SYS_thread
;
static
HANDLE
SYS_thread
;
static
int
SYS_timers_disabled
;
static
BOOL
SYS_timers_disabled
;
/***********************************************************************
/***********************************************************************
...
@@ -200,7 +200,7 @@ WORD WINAPI SYSTEM_KillSystemTimer( WORD timer )
...
@@ -200,7 +200,7 @@ WORD WINAPI SYSTEM_KillSystemTimer( WORD timer )
*/
*/
void
WINAPI
EnableSystemTimers16
(
void
)
void
WINAPI
EnableSystemTimers16
(
void
)
{
{
SYS_timers_disabled
=
0
;
SYS_timers_disabled
=
FALSE
;
}
}
...
@@ -209,7 +209,7 @@ void WINAPI EnableSystemTimers16(void)
...
@@ -209,7 +209,7 @@ void WINAPI EnableSystemTimers16(void)
*/
*/
void
WINAPI
DisableSystemTimers16
(
void
)
void
WINAPI
DisableSystemTimers16
(
void
)
{
{
SYS_timers_disabled
=
1
;
SYS_timers_disabled
=
TRUE
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment