Aidan Lee
Aidan Lee
I played around with some of this months ago and since there's now a PR to add another version define I thought I'd better post some of my ideas! Instead...
Hmm, I'm sure it worked at some point. I'll take a look.
Yes, this sounds good and is what I had in mind as part of #1124. Maybe an extra element on the `files` tag? ```xml ```
``` Error: Main.cpp ./src/Main.cpp(35): error C2039: 'Distance_obj': is not a member of '`global namespace'' ./src/Main.cpp(35): error C3083: 'Distance_obj': the symbol to the left of a '::' must be a type...
While not an exact solution to this problem I've been working on updated methods of externing native C++ types, including enums, which solves many of these issues surrounding struct and...
Ideally I'd like to avoid having to manually release the resources in the finaliser as I've definitely forgotten to do so in the past and ended up leaking things like...
Thanks for the tips, I seem to have an internal pendulum that swings between "Extern the entire native library and do all interop in haxe!" and "do all interop in...
The syntax `Void->Void` doesn't mean that the function takes `Void` as an argument (`Void` cannot be used as a value in haxe) but rather that it accepts no arguments. So...
Doesn't this require a change on the haxe side to work properly? Since the `FileStat` typedef only has size as an Int. Changes like this should also probably be guarded...
`Dynamic` and other global hxcpp types should now always have `::` prefixed in haxe nightlies.