msvc support
[m6w6/libmemcached] / src / libmemcached / poll.h
index fab30d1f07dcbdca93e4a43b82f724710822cbfc..8c0ad1ff25eb17af58bac306d8acc87ef712a692 100644 (file)
 
 #pragma once
 
-#if defined(_WIN32)
-
-#  include <winsock2.h>
+#if defined HAVE_SYS_POLL_H
+#  include <sys/poll.h>
+#elif defined HAVE_POLL_H
+#  include <poll.h>
+#elif defined _WIN32
+#  include "windows.hpp"
+#  define poll WSAPoll
+typedef int nfds_t;
+#elif !defined _MSC_VER
 
 #  ifdef __cplusplus
 extern "C" {