1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

net: fix cross compilation with mingw, Ws2tcpip.h => ws2tcpip.h

This commit is contained in:
Delyan Angelov 2020-12-07 10:41:42 +02:00
parent f377710c0b
commit 91e18b039c
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -834,7 +834,7 @@ const (
// Link to Winsock library // Link to Winsock library
#flag -lws2_32 #flag -lws2_32
#include <winsock2.h> #include <winsock2.h>
#include <Ws2tcpip.h> #include <ws2tcpip.h>
// Constants that windows needs // Constants that windows needs
const ( const (