blob: 8c9c084c08c562369521fb1b2df8d4bb30245ed3 [file] [log] [blame]
#ifndef WINCOMPAT_H
#define WINCOMPAT_H
#include <stdint.h>
#define ssize_t int
#include <Winsock2.h>
#include <ws2tcpip.h>
#include <malloc.h>
#ifndef gettimeofday
#define gettimeofday wintimeofday
#ifndef __attribute__
#define __attribute__(X)
#endif
#ifdef __cplusplus
extern "C" {
#endif
struct timezone {
int tz_minuteswest; /* minutes west of Greenwich */
int tz_dsttime; /* type of DST correction */
};
int wintimeofday(struct timeval *tv, struct timezone *tz);
#ifndef strcasecmp
#define strcasecmp _stricmp
#endif
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif
#endif /* WINCOMPAT_H */