mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 20:49:56 +00:00
20 lines
227 B
C++
20 lines
227 B
C++
//
|
|
// Created by koncord on 23.01.16.
|
|
//
|
|
|
|
#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
|