mirror of
https://github.com/UberGames/EF2GameSource.git
synced 2024-11-10 06:31:42 +00:00
11 lines
139 B
C
11 lines
139 B
C
|
#ifndef PLATFORM_H
|
||
|
#define PLATFORM_H
|
||
|
|
||
|
#ifdef LINUX
|
||
|
#define __declspec(x)
|
||
|
#define __cdecl
|
||
|
#define __stdcall
|
||
|
#endif
|
||
|
|
||
|
#endif //PLATFORM_H
|