diff options
author | Nikias Bassen | 2023-06-28 15:11:25 +0200 |
---|---|---|
committer | Nikias Bassen | 2023-06-28 15:11:25 +0200 |
commit | 23c1d3004fd8e1b358beb9312e58aa25f6018fc5 (patch) | |
tree | ba359c81ef27e8fa6dad689756ba5df325a60710 /src | |
parent | 806ab8d37cf31ffaf0a21230af3f1ce506623317 (diff) | |
download | libimobiledevice-23c1d3004fd8e1b358beb9312e58aa25f6018fc5.tar.gz libimobiledevice-23c1d3004fd8e1b358beb9312e58aa25f6018fc5.tar.bz2 |
idevice: Add missing include for Windows
Diffstat (limited to 'src')
-rw-r--r-- | src/idevice.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/idevice.c b/src/idevice.c index 87ed87c..8545317 100644 --- a/src/idevice.c +++ b/src/idevice.c @@ -32,6 +32,7 @@ #ifdef WIN32 #include <winsock2.h> +#include <ws2tcpip.h> #include <windows.h> #else #include <sys/socket.h> |