| 8 | { |
| 9 | |
| 10 | void Boot() |
| 11 | { |
| 12 | //__hxcpp_enable(false); |
| 13 | #ifdef HX_WINRT |
| 14 | HRESULT hr = ::RoInitialize( RO_INIT_MULTITHREADED ); |
| 15 | #endif |
| 16 | |
| 17 | #ifdef GPH |
| 18 | setvbuf( stdout , 0 , _IONBF , 0 ); |
| 19 | setvbuf( stderr , 0 , _IONBF , 0 ); |
| 20 | #endif |
| 21 | |
| 22 | __hxcpp_stdlibs_boot(); |
| 23 | Object::__boot(); |
| 24 | Dynamic::__boot(); |
| 25 | hx::Class_obj::__boot(); |
| 26 | String::__boot(); |
| 27 | Anon_obj::__boot(); |
| 28 | ArrayBase::__boot(); |
| 29 | EnumBase_obj::__boot(); |
| 30 | Math_obj::__boot(); |
| 31 | } |
| 32 | |
| 33 | } |
| 34 |
no test coverage detected