Tagged Questions
1
vote
1answer
60 views
What does ret reinterpret_cast do?
#define HX_DEFINE_DYNAMIC_FUNC0(class,func,ret) \
Dynamic __##class##func(hx::Object *inObj) \
{ \
ret reinterpret_cast<class *>(inObj)->func(); return Dynamic(); \
}; \
Dynamic ...
7
votes
0answers
114 views
Running HaXe from iOS app – hxRunLibrary() error
For a client I've developed an iOS + Android app using Cordova (PhoneGap) for the user interface. Now, as an update to this app, I'm am attempting to add a game that was written in HaXe. Originally ...
0
votes
1answer
297 views
MSVC environment variables not showing up in different terminals
I'm using HaXe's HXCPP to generate C++ code and compile it with Microsoft Visual Studio 2010 Express Edition. I'm following this guide and it asks you to run "c:\Program Files (x86)\Microsoft Visual ...
1
vote
1answer
204 views
Is there any algorithm for turning simple HAXE code into C/C++ code files?
I have simple Haxe app like
class Main
{
public static function main()
{
trace("hello world");
}
}
I know how to compile such app for windows (not as SWF but as app from pure C\C++ )(and you can ...
2
votes
2answers
847 views
Haxe - Flash project compiles fine, but won't compile using hxcpp
In summary, I think my question is this:
How can I force hxcpp to compile haxe code for Flash 8 ?
Here's where I'm at. I'm new to haxe, and am trying to get a sample from here:
...