mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-07 19:18:19 +02:00
20 lines
No EOL
297 B
C++
20 lines
No EOL
297 B
C++
#include "X86Target.h"
|
|
|
|
#include "BeefySysLib/util/AllocDebug.h"
|
|
|
|
USING_NS_BF;
|
|
|
|
BF_EXPORT void BF_CALLTYPE Targets_Create()
|
|
{
|
|
#ifndef __linux__
|
|
gX86Target = new X86Target();
|
|
#endif
|
|
}
|
|
|
|
BF_EXPORT void BF_CALLTYPE Targets_Delete()
|
|
{
|
|
#ifndef __linux__
|
|
delete gX86Target;
|
|
gX86Target = NULL;
|
|
#endif
|
|
} |