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
fe28f25f
Commit
fe28f25f
authored
Sep 23, 1999
by
Patrik Stridvall
Committed by
Alexandre Julliard
Sep 23, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modification due to problems with winapi-check.
parent
fcc24ff4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
comm.c
misc/comm.c
+4
-2
No files found.
misc/comm.c
View file @
fe28f25f
...
...
@@ -1013,6 +1013,7 @@ INT16 WINAPI SetCommState16(LPDCB16 lpdcb)
*/
INT16
WINAPI
GetCommState16
(
INT16
cid
,
LPDCB16
lpdcb
)
{
int
speed
;
struct
DosDeviceStruct
*
ptr
;
struct
termios
port
;
...
...
@@ -1027,10 +1028,11 @@ INT16 WINAPI GetCommState16(INT16 cid, LPDCB16 lpdcb)
lpdcb
->
Id
=
cid
;
#ifndef __EMX__
#ifdef CBAUD
s
witch
(
port
.
c_cflag
&
CBAUD
)
{
s
peed
=
port
.
c_cflag
&
CBAUD
;
#else
s
witch
(
port
.
c_ospeed
)
{
s
peed
=
port
.
c_ospeed
;
#endif
switch
(
speed
)
{
case
B110
:
lpdcb
->
BaudRate
=
110
;
break
;
...
...
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