1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #ifndef SOULNG_UTIL_DEFINES_INCLUDED
 7 #define SOULNG_UTIL_DEFINES_INCLUDED
 8 
 9 #ifdef _WIN32
10     #if defined(_WIN64)
11         #define BITS_64 1
12     #else 
13         #define BITS_32 1
14     #endif
15 #else
16     #if defined(__x86_64__)
17         #define BITS_64 1
18     #else 
19         #define BITS_32 1
20     #endif
21 #endif 
22 
23 #endif // SOULNG_UTIL_DEFINES_INCLUDED