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
1c4456f7
Commit
1c4456f7
authored
Oct 22, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Oct 23, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user.exe16: Use BOOL type where appropriate.
parent
e0e7a077
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
comm.c
dlls/user.exe16/comm.c
+3
-3
user.c
dlls/user.exe16/user.c
+1
-1
No files found.
dlls/user.exe16/comm.c
View file @
1c4456f7
...
...
@@ -83,7 +83,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(comm);
struct
DosDeviceStruct
{
HANDLE
handle
;
int
suspended
;
BOOL
suspended
;
int
unget
,
xmit
;
int
evtchar
;
/* events */
...
...
@@ -577,7 +577,7 @@ INT16 WINAPI SetCommBreak16(INT16 cid)
return
-
1
;
}
ptr
->
suspended
=
1
;
ptr
->
suspended
=
TRUE
;
ptr
->
commerror
=
0
;
return
0
;
}
...
...
@@ -594,7 +594,7 @@ INT16 WINAPI ClearCommBreak16(INT16 cid)
FIXME
(
"no cid=%d found!
\n
"
,
cid
);
return
-
1
;
}
ptr
->
suspended
=
0
;
ptr
->
suspended
=
FALSE
;
ptr
->
commerror
=
0
;
return
0
;
}
...
...
dlls/user.exe16/user.c
View file @
1c4456f7
...
...
@@ -2792,7 +2792,7 @@ DWORD WINAPI DumpIcon16( SEGPTR pInfo, WORD *lpLen,
*/
static
BOOL
DRAG_QueryUpdate16
(
HWND
hQueryWnd
,
SEGPTR
spDragInfo
)
{
BOOL
bResult
=
0
;
BOOL
bResult
;
WPARAM
wParam
;
POINT
pt
,
old_pt
;
LPDRAGINFO16
ptrDragInfo
=
MapSL
(
spDragInfo
);
...
...
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