mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Fix Windows support
This commit is contained in:
parent
41d574f34c
commit
fb3e20e0bc
72 changed files with 912 additions and 475 deletions
|
@ -1,3 +1,4 @@
|
|||
/* Copyright (c) 2017 - 2020 LiteSpeed Technologies Inc. See LICENSE. */
|
||||
#pragma once
|
||||
#include <Windows.h>
|
||||
#include <winsock2.h>
|
||||
|
@ -7,7 +8,9 @@ struct iovec {
|
|||
size_t iov_len; /* Number of bytes to transfer */
|
||||
};
|
||||
#define strcasecmp(a,b) _strcmpi(a,b)
|
||||
#define strncasecmp _strnicmp
|
||||
#define strdup _strdup
|
||||
#define PATH_MAX MAX_PATH
|
||||
|
||||
#define posix_memalign(p, a, s) (((*(p)) = _aligned_malloc((s), (a))), *(p) ?0 :errno)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue