diff options
author | 2024-12-02 06:25:35 +0100 | |
---|---|---|
committer | 2024-12-02 06:25:35 +0100 | |
commit | 5235448cead2b6e6c9e891f9a95e89373669402f (patch) | |
tree | 797a0548fa9798ae844fd90eaae3892b65e30176 /src | |
parent | 51c313dda2887d4e5c9290a3eee397511bbaaf85 (diff) | |
download | libideviceactivation-5235448cead2b6e6c9e891f9a95e89373669402f.tar.gz libideviceactivation-5235448cead2b6e6c9e891f9a95e89373669402f.tar.bz2 |
Change WIN32 to _WIN32 to check if running on Windows
Diffstat (limited to 'src')
-rw-r--r-- | src/activation.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/activation.c b/src/activation.c index c60d669..8cf6c0a 100644 --- a/src/activation.c +++ b/src/activation.c @@ -32,7 +32,7 @@ #include <libxml/HTMLtree.h> #include <curl/curl.h> -#ifdef WIN32 +#ifdef _WIN32 #define IDEVICE_ACTIVATION_API __declspec( dllexport ) #else #ifdef HAVE_FVISIBILITY @@ -42,7 +42,7 @@ #endif #endif -#ifdef WIN32 +#ifdef _WIN32 #include <windows.h> #define strncasecmp _strnicmp #endif |