> Hi Nicolas, > > > > I’ve come across a need to pass a 64bit int from my SQLite ndll to Neko > (then on to haxe). How do I alloc this in my return statement from my C > code and what do I assign this to in Neko / haXe?
There is no int64 type in Neko. You can create your own (using an abstract value) or use for example an array of two int32. Nicolas -- Neko : One VM to run them all (http://nekovm.org)
