mirror of
https://github.com/curl/curl.git
synced 2026-08-26 07:33:31 +03:00
Some versions of winsock2.h have pollfd struct and constants
This commit is contained in:
parent
e87c996fe0
commit
9a39839a43
1 changed files with 4 additions and 1 deletions
|
|
@ -40,13 +40,16 @@
|
|||
#undef HAVE_POLL_FINE
|
||||
#define HAVE_POLL_FINE 1
|
||||
#define poll(x,y,z) WSAPoll((x),(y),(z))
|
||||
#if defined(_MSC_VER) && defined(POLLRDNORM)
|
||||
#define HAVE_STRUCT_POLLFD 1
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Definition of pollfd struct and constants for platforms lacking them.
|
||||
*/
|
||||
|
||||
#ifndef HAVE_SYS_POLL_H
|
||||
#if !defined(HAVE_STRUCT_POLLFD) && !defined(HAVE_SYS_POLL_H)
|
||||
|
||||
#define POLLIN 0x01
|
||||
#define POLLPRI 0x02
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue