mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 12:02:21 +02:00
23 lines
356 B
C
23 lines
356 B
C
![]() |
#pragma once
|
||
|
|
||
|
#define BFSTDCALL
|
||
|
|
||
|
#include "LinuxCommon.h"
|
||
|
|
||
|
#define BF_PLATFORM_LINUX
|
||
|
|
||
|
#define BF_IMPORT extern "C"
|
||
|
|
||
|
#ifdef BFSYSLIB_DYNAMIC
|
||
|
#define BF_EXPORT extern "C"
|
||
|
#define BF_CALLTYPE
|
||
|
#else
|
||
|
#define BF_EXPORT extern "C"
|
||
|
#define BF_CALLTYPE
|
||
|
#define BF_RESOURCES_REL_DIR "../Resources"
|
||
|
#endif
|
||
|
|
||
|
#define BF_DEBUG_BREAK()
|
||
|
|
||
|
#include "../PlatformInterface.h"
|