Update Files

This commit is contained in:
2025-01-22 16:18:30 +01:00
parent ed4603cf95
commit a36294b518
16718 changed files with 2960346 additions and 0 deletions

View File

@ -0,0 +1,35 @@
#include <hxcpp.h>
#include <hxMath.h>
#ifdef HX_WINRT
#include<Roapi.h>
#endif
namespace hx
{
void Boot()
{
//__hxcpp_enable(false);
#ifdef HX_WINRT
HRESULT hr = ::RoInitialize( RO_INIT_MULTITHREADED );
#endif
#ifdef GPH
setvbuf( stdout , 0 , _IONBF , 0 );
setvbuf( stderr , 0 , _IONBF , 0 );
#endif
__hxcpp_stdlibs_boot();
Object::__boot();
Dynamic::__boot();
hx::Class_obj::__boot();
String::__boot();
Anon_obj::__boot();
ArrayBase::__boot();
EnumBase_obj::__boot();
Math_obj::__boot();
}
}