diff --git a/library.h b/library.h index ebbe48d..f86af04 100644 --- a/library.h +++ b/library.h @@ -11,6 +11,9 @@ #define AARU_CALL __stdcall #define AARU_EXPORT EXTERNC __declspec(dllexport) #define AARU_LOCAL +#ifndef PATH_MAX +#define PATH_MAX _MAX_PATH +#endif #else #define AARU_CALL #if defined(__APPLE__) diff --git a/simd.h b/simd.h index 786b87b..7520ced 100644 --- a/simd.h +++ b/simd.h @@ -9,6 +9,7 @@ #ifdef _MSC_VER #define AVX2 +#define SSSE3 #define CLMUL #else #define AVX2 __attribute__((target("avx2")))