hxcpp
hxcpp copied to clipboard
Runtime files for c++ backend for haxe
Using the standard api to launch a process on Windows OS creates a console window. With this fix, it should match the behavior of other operating systems.
I try to use Poll and found out _hx_std_socket_poll_events has issue. First, it does not clear p->outr and outw before memcpy. This result in garbage data in them and result...
Tried compiling for Android via GitHub Actions a few days ago... Left with a error message `Creating /home/runner/work/vs-poyo-demoFINALIZED/vs-poyo-demoFINALIZED/export/release/android/obj/obj/android-v7/__pch/haxe/hxcpp.h.gch... /home/runner/haxelib/hxcpp/4,2,1/include/hxcpp.h:23:13: fatal error: 'typeinfo' file not found #include ^~~~~~~~~~ 1 error generated....
Version 22 changed the NDK's structure, meaning some files and folders aren't where hxcpp expects them. --- To test this, create the following three files, and compile with `haxelib run...
im trying to compile an app and it keeps crashing with this `/home/runner/haxelib/hxcpp/4,2,1/include/hxcpp.h:23:13: fatal error: 'typeinfo' file not found #include ^~~~~~~~~~ 1 error generated. Error: Could not create PCH` is...
im trying to compile on Android and it keeps crashing with this /home/runner/haxelib/hxcpp/4,2,1/include/hxcpp.h:23:13: fatal error: 'typeinfo' file not found #include ^~~~~~~~~~ 1 error generated. Error: Could not create PCH is...
Hxcpp transforms function types into dynamics (shown [here](https://imgur.com/a/NxXJ7iM)). Surely it should be converted into a C++ callback in the traditional sense or Callable? Using [HxScout ](https://hxscout.com/) showed a large object...
but the code crashes ```haxe var setWindowLong:cpp.Function< Pointer< Void > -> Int -> UInt -> Int, cpp.abi.Winapi> = Function.getProcAddress("User32.dll", "SetWindowLongA"); var setLayeredWindowAttributes:cpp.Function< Pointer< Void > -> UInt -> UInt ->...
Hi, I am having an openfl project that built for android. There is a thread in which there is null access. I put a big try catch insie the thread_func...