mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-10-17 19:11:07 -04:00
17 lines
185 B
C++
17 lines
185 B
C++
#ifndef PLATFORM_HPP
|
|
#define PLATFORM_HPP
|
|
|
|
#if _MSC_VER
|
|
#ifdef _M_X86
|
|
#define ARCH_X86
|
|
#endif
|
|
#endif
|
|
|
|
#if __GNUC__
|
|
#ifdef __i386__
|
|
#define ARCH_X86
|
|
#endif
|
|
#endif
|
|
|
|
#endif //PLATFORM_HPP
|