X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7d6727528886073e462499f8084504eccf8234b7..5d25c05039a7c6ebbddfe16d99234dc756e75356:/src/msw/dialup.cpp diff --git a/src/msw/dialup.cpp b/src/msw/dialup.cpp index aad7149867..b812904744 100644 --- a/src/msw/dialup.cpp +++ b/src/msw/dialup.cpp @@ -38,6 +38,8 @@ #include "wx/event.h" #endif +#include "wx/msw/private.h" // must be before #include "dynlib.h" + #if !wxUSE_DYNLIB_CLASS #error You need wxUSE_DYNLIB_CLASS to be 1 to compile dialup.cpp. #endif @@ -46,15 +48,21 @@ #include "wx/dialup.h" -// Doesn't yet compile under BC++, mingw, Watcom C++: no wininet.h -#if !defined(__BORLANDC__) && !defined(__GNUWIN32_OLD__) && !defined(__GNUWIN32__) && !defined(__WATCOMC__) +// Doesn't yet compile under VC++ 4, BC++, mingw, Watcom C++: no wininet.h +#if !defined(__BORLANDC__) && !defined(__GNUWIN32_OLD__) && !defined(__GNUWIN32__) && !defined(__WATCOMC__) && ! (defined(__VISUALC__) && (__VISUALC__ < 1020)) #include #include #include -#include "wx/msw/private.h" +// Not in VC++ 5 +#ifndef INTERNET_CONNECTION_LAN +#define INTERNET_CONNECTION_LAN 2 +#endif +#ifndef INTERNET_CONNECTION_PROXY +#define INTERNET_CONNECTION_PROXY 4 +#endif // ---------------------------------------------------------------------------- // constants