1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

Small patch to change mbedtls _WIN32_WINNT

We are using 0x0601 as min anyway.
This avoids SOCKADDR_STORAGE error on uwp build
This commit is contained in:
Fabio Alessandrelli
2018-02-20 14:41:17 +01:00
parent d29488ee9b
commit dfef6f24d5

View File

@@ -49,7 +49,7 @@
#undef _WIN32_WINNT
#endif
/* Enables getaddrinfo() & Co */
#define _WIN32_WINNT 0x0501
#define _WIN32_WINNT 0x0601
#include <ws2tcpip.h>
#include <winsock2.h>