Files
nim-ngtcp2/build/lib/includes/wincompat.h
2025-02-28 14:22:43 -04:00

37 lines
614 B
C

#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 tzone {
int tz_minuteswest; /* minutes west of Greenwich */
int tz_dsttime; /* type of DST correction */
};
int wintimeofday(struct timeval *tv, struct tzone *tz);
#ifndef strcasecmp
#define strcasecmp _stricmp
#endif
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif
#endif /* WINCOMPAT_H */