diff options
author | 2024-11-27 12:01:18 +0100 | |
---|---|---|
committer | 2024-11-29 14:36:34 +0100 | |
commit | bcced6c4f6a79e09ed3961632b2faf81fe873137 (patch) | |
tree | 71bb6a70a3438c68229e4906e6bce14974a9aee8 /3rd_party/libsrp6a-sha512/cstr.h | |
parent | ba829e6f1a62bdad7866572d1e2cff1836ced742 (diff) | |
download | libimobiledevice-bcced6c4f6a79e09ed3961632b2faf81fe873137.tar.gz libimobiledevice-bcced6c4f6a79e09ed3961632b2faf81fe873137.tar.bz2 |
Fix attempts to detect Windows using _WIN32
Diffstat (limited to '3rd_party/libsrp6a-sha512/cstr.h')
-rw-r--r-- | 3rd_party/libsrp6a-sha512/cstr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rd_party/libsrp6a-sha512/cstr.h b/3rd_party/libsrp6a-sha512/cstr.h index ae7d71a..29afea7 100644 --- a/3rd_party/libsrp6a-sha512/cstr.h +++ b/3rd_party/libsrp6a-sha512/cstr.h @@ -38,7 +38,7 @@ #define _MSVC15DEXPORT #define _MSVC20EXPORT #define _DLLAPI -#if defined(WINDOWS) || defined(WIN32) +#if defined(WINDOWS) || defined(_WIN32) #define _CDECL _cdecl #else #define _CDECL |