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