First commit

This commit is contained in:
2021-03-07 05:58:59 +01:00
commit 8204c6b556
18475 changed files with 3309357 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
#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