Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
940a459c
...
940a459c17cdc1e6f62405c37e5876f8a5806020
authored
2004-06-09 07:59:15 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Forward declaration of struct timeval is needed for stream_wait().
1 parent
d75b6363
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
include/mailutils/stream.h
include/mailutils/stream.h
View file @
940a459
...
...
@@ -83,8 +83,11 @@ extern int stream_setbufsiz __P ((stream_t stream, size_t size));
extern
int
stream_flush
__P
((
stream_t
));
#define MU_STREAM_READY_RD 0x1
#define MU_STREAM_READY_WR 0x2
extern
int
stream_wait
__P
((
stream_t
stream
,
int
*
pflags
,
struct
timeval
*
));
#define MU_STREAM_READY_WR 0x2
struct
timeval
;
/* Needed for the following declaration */
extern
int
stream_wait
__P
((
stream_t
stream
,
int
*
pflags
,
struct
timeval
*
));
/* Functions useful to implementors of new stream types. */
...
...
Please
register
or
sign in
to post a comment