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
dfa57c6e
Commit
dfa57c6e
authored
Aug 06, 2012
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Aug 13, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
krnl386.exe16: Avoid TRUE:FALSE conditional expressions.
parent
2793be9c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
dosexe.c
dlls/krnl386.exe16/dosexe.c
+1
-1
int31.c
dlls/krnl386.exe16/int31.c
+1
-1
vga.c
dlls/krnl386.exe16/vga.c
+1
-1
No files found.
dlls/krnl386.exe16/dosexe.c
View file @
dfa57c6e
...
...
@@ -61,7 +61,7 @@ static BOOL DOSVM_isdosexe;
*/
BOOL
DOSVM_IsWin16
(
void
)
{
return
DOSVM_isdosexe
?
FALSE
:
TRUE
;
return
!
DOSVM_isdosexe
;
}
/**********************************************************************
...
...
dlls/krnl386.exe16/int31.c
View file @
dfa57c6e
...
...
@@ -93,7 +93,7 @@ typedef struct {
*/
BOOL
DOSVM_IsDos32
(
void
)
{
return
(
dpmi_flag
&
1
)
?
TRUE
:
FALSE
;
return
(
dpmi_flag
&
1
)
!=
0
;
}
...
...
dlls/krnl386.exe16/vga.c
View file @
dfa57c6e
...
...
@@ -716,7 +716,7 @@ static void VGA_InstallTimer(unsigned Rate)
static
BOOL
VGA_IsTimerRunning
(
void
)
{
return
VGA_timer_thread
?
TRUE
:
FALSE
;
return
VGA_timer_thread
!=
0
;
}
static
HANDLE
VGA_AlphaConsole
(
void
)
...
...
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