31 lines
616 B
C
31 lines
616 B
C
#ifndef HXCPP_CONFIG_INCLUDED
|
|
#define HXCPP_CONFIG_INCLUDED
|
|
|
|
#if !defined(HX_LINUX) && !defined(NO_HX_LINUX)
|
|
#define HX_LINUX
|
|
#endif
|
|
|
|
#if !defined(HXCPP_M64) && !defined(NO_HXCPP_M64)
|
|
#define HXCPP_M64
|
|
#endif
|
|
|
|
#if !defined(HXCPP_VISIT_ALLOCS) && !defined(NO_HXCPP_VISIT_ALLOCS)
|
|
#define HXCPP_VISIT_ALLOCS
|
|
#endif
|
|
|
|
#if !defined(HX_SMART_STRINGS) && !defined(NO_HX_SMART_STRINGS)
|
|
#define HX_SMART_STRINGS
|
|
#endif
|
|
|
|
#if !defined(HXCPP_API_LEVEL) && !defined(NO_HXCPP_API_LEVEL)
|
|
#define HXCPP_API_LEVEL 400
|
|
#endif
|
|
|
|
#if !defined(HXCPP_M64) && !defined(NO_HXCPP_M64)
|
|
#define HXCPP_M64
|
|
#endif
|
|
|
|
#include <hxcpp.h>
|
|
|
|
#endif
|