Skip to main content
Sign in
Snippets Groups Projects
Commit 2223bc50 authored by Sebastián Katzer's avatar Sebastián Katzer Committed by Andy Green
Browse files

Fix Iphlpapi.h -> iphlpapi.h

If you cross compile for Windows you will get an error otherwise that the header cannot be found.
See here for code example from microsoft: https://docs.microsoft.com/en-us/windows/desktop/iphlp/creating-a-basic-ip-helper-application
parent 35473ca4
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#ifdef LWS_WITH_IPV6 #ifdef LWS_WITH_IPV6
#if defined(WIN32) || defined(_WIN32) #if defined(WIN32) || defined(_WIN32)
#include <wincrypt.h> #include <wincrypt.h>
#include <Iphlpapi.h> #include <iphlpapi.h>
#else #else
#include <net/if.h> #include <net/if.h>
#endif #endif
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment