101 lines
3.2 KiB
C
101 lines
3.2 KiB
C
/*
|
|
Copyright (c) 2006 by Dan Kennedy.
|
|
Copyright (c) 2006 by Juliusz Chroboczek.
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
*/
|
|
/*Adaptions by memphiz@xbmc.org*/
|
|
|
|
#ifndef win32_COMPAT_H_
|
|
#define win32_COMPAT_H_
|
|
|
|
#include <winsock2.h>
|
|
#include <ws2tcpip.h>
|
|
#include <ws2ipdef.h>
|
|
#include <basetsd.h>
|
|
#include <io.h>
|
|
#include <malloc.h>
|
|
#include <sys/stat.h>
|
|
|
|
#if defined(_MSC_VER)
|
|
#define __attribute__(attr)
|
|
#endif
|
|
|
|
#define SOL_TCP IPPROTO_TCP
|
|
|
|
#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 */
|
|
#define POLLERR 0x0008 /* Error condition */
|
|
#define POLLHUP 0x0010 /* Hung up */
|
|
#define POLLNVAL 0x0020 /* Invalid request: fd not open */
|
|
|
|
struct pollfd {
|
|
SOCKET fd; /* file descriptor */
|
|
short events; /* requested events */
|
|
short revents; /* returned events */
|
|
};
|
|
#endif
|
|
|
|
#ifdef _MSC_VER
|
|
typedef int ssize_t;
|
|
typedef int uid_t;
|
|
typedef int gid_t;
|
|
typedef int socklen_t;
|
|
#endif
|
|
|
|
/* Wrapper macros to call misc. functions win32 is missing */
|
|
#define close closesocket
|
|
#define ioctl ioctlsocket
|
|
#define readv win32_readv
|
|
#define writev win32_writev
|
|
#define strncasecmp _strnicmp
|
|
#define strdup _strdup
|
|
#define dup2(x, y) win32_dup2(x, y)
|
|
#define poll(x, y, z) win32_poll(x, y, z)
|
|
#define inet_pton(x,y,z) win32_inet_pton(x,y,z)
|
|
#define sleep(x) Sleep(x * 1000)
|
|
#ifdef _MSC_VER
|
|
#define getpid GetCurrentProcessId
|
|
#endif
|
|
|
|
#if defined(_MSC_VER) && _MSC_VER < 1900
|
|
#define snprintf(a, b, c, ...) _snprintf_s(a, b, b, c, ## __VA_ARGS__)
|
|
#endif
|
|
|
|
struct timezone;
|
|
|
|
struct iovec {
|
|
void *iov_base;
|
|
size_t iov_len;
|
|
};
|
|
|
|
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);
|
|
ssize_t win32_writev(int fd, const struct iovec *iov, int iovcnt);
|
|
ssize_t win32_readv(int fd, const struct iovec *iov, int iovcnt);
|
|
int win32_dup2(int oldfd, int newfd);
|
|
|
|
#define inline __inline__
|
|
|
|
#endif // win32_COMPAT_H_
|