25 lines
365 B
C
25 lines
365 B
C
//
|
|
// Created by beerpsi on 12/31/2023.
|
|
//
|
|
|
|
#ifndef BROKENITHM_ARCH_H
|
|
#define BROKENITHM_ARCH_H
|
|
|
|
#if _WIN32 || _WIN64
|
|
#if _WIN64
|
|
#define ENV64BIT
|
|
#else
|
|
#define ENV32BIT
|
|
#endif // _WIN64
|
|
#endif // _WIN32 || _WIN64
|
|
|
|
#if __GNUC__
|
|
#if __x86_64__ || __ppc64__
|
|
#define ENV64BIT
|
|
#else
|
|
#define ENV32BIT
|
|
#endif // __x86_64__ || __ppc64__
|
|
#endif
|
|
|
|
#endif // BROKENITHM_ARCH_H
|