Targets.cpp 247 B

12345678910111213141516
  1. #include "X86Target.h"
  2. #include "BeefySysLib/util/AllocDebug.h"
  3. USING_NS_BF;
  4. BF_EXPORT void BF_CALLTYPE Targets_Create()
  5. {
  6. gX86Target = new X86Target();
  7. }
  8. BF_EXPORT void BF_CALLTYPE Targets_Delete()
  9. {
  10. delete gX86Target;
  11. gX86Target = NULL;
  12. }