Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
7eb982a4
Commit
7eb982a4
authored
Aug 08, 2005
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Aug 08, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix autoconf-related #ifdefs in Comm_CheckEvents().
parent
bbc4f86a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
comm.c
dlls/kernel/comm.c
+2
-2
No files found.
dlls/kernel/comm.c
View file @
7eb982a4
...
...
@@ -1949,7 +1949,7 @@ static DWORD WINAPI Comm_CheckEvents(int fd, DWORD mask, serial_irq_info *new, s
WARN
(
"TIOCSERGETLSR returned error
\n
"
);
if
(
queue
)
/* TIOCINQ only checks for an empty buffer */
#elif def(TIOCINQ)
#elif def
ined
(TIOCINQ)
if
(
ioctl
(
fd
,
TIOCOUTQ
,
&
queue
))
WARN
(
"TIOCOUTQ returned error
\n
"
);
if
(
!
queue
)
...
...
@@ -2101,7 +2101,7 @@ static BOOL COMM_WaitCommEvent(
res
=
FALSE
;
}
return
res
;
#if !defined(TIOCINQ) || (!(defined(TIOCSERGETLSR) && defined(TIOCSER_TEMT))
&&
!defined(TIOCINQ)) || !defined(TIOCMGET) || !defined(TIOCM_CTS) ||!defined(TIOCM_DSR) || !defined(TIOCM_RNG) || !defined(TIOCM_CAR)
#if !defined(TIOCINQ) || (!(defined(TIOCSERGETLSR) && defined(TIOCSER_TEMT))
||
!defined(TIOCINQ)) || !defined(TIOCMGET) || !defined(TIOCM_CTS) ||!defined(TIOCM_DSR) || !defined(TIOCM_RNG) || !defined(TIOCM_CAR)
error:
FIXME
(
"Returning error because of missing capabilities
\n
"
);
HeapFree
(
GetProcessHeap
(),
0
,
commio
);
...
...
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