forked from teamnwah/openmw-tes3coop
21 lines
260 B
C++
21 lines
260 B
C++
|
//
|
||
|
// Created by koncord on 23.01.16.
|
||
|
//
|
||
|
|
||
|
#ifndef SOURCEPAWN_PLATFORM_HPP
|
||
|
#define SOURCEPAWN_PLATFORM_HPP
|
||
|
|
||
|
#if _MSC_VER
|
||
|
#ifdef _M_X86
|
||
|
#define ARCH_X86
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
|
#if __GNUC__
|
||
|
#ifdef __i386__
|
||
|
#define ARCH_X86
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
|
#endif //SOURCEPAWN_PLATFORM_HPP
|