X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=win32%2Fwin32_compat.h;h=67e44e48fccad69b511167edf6496c13787c2a00;hb=20379f03fc80f4c2cb52d53103978c8141994c50;hp=43f518e3b9cc7d2cb394390a16d675099ecb8384;hpb=35bb34b41c0892cb3b4f01a5210327b8afd7003b;p=deb_libnfs.git diff --git a/win32/win32_compat.h b/win32/win32_compat.h index 43f518e..67e44e4 100644 --- a/win32/win32_compat.h +++ b/win32/win32_compat.h @@ -22,7 +22,6 @@ THE SOFTWARE. */ /*Adaptions by memphiz@xbmc.org*/ -#ifdef WIN32 #ifndef win32_COMPAT_H_ #define win32_COMPAT_H_ #define NO_IPv6 1 @@ -33,6 +32,7 @@ THE SOFTWARE. #include #include #include +#include typedef int uid_t; typedef int gid_t; @@ -79,6 +79,8 @@ typedef int socklen_t; #define MSG_DONTWAIT 0 #define ssize_t SSIZE_T +#if(_WIN32_WINNT < 0x0600) + #define POLLIN 0x0001 /* There is data to read */ #define POLLPRI 0x0002 /* There is urgent data to read */ #define POLLOUT 0x0004 /* Writing now will not block */ @@ -91,6 +93,10 @@ struct pollfd { short events; /* requested events */ short revents; /* returned events */ }; +#endif + +#define close closesocket +#define ioctl ioctlsocket /* Wrapper macros to call misc. functions win32 is missing */ #define poll(x, y, z) win32_poll(x, y, z) @@ -99,5 +105,6 @@ int win32_inet_pton(int af, const char * src, void * dst); int win32_poll(struct pollfd *fds, unsigned int nfsd, int timeout); int win32_gettimeofday(struct timeval *tv, struct timezone *tz); +#define DllExport + #endif//win32_COMPAT_H_ -#endif//WIN32