I was afraid of this. It might be that I could simply cast the int. Sqlite requires this for the rowID as possible values may exceed that of the lowly 32 bit int, but I'm doubting this will be such a necessity as to cause any agrivations, so my instincts tell me to just shove it all into a smaller space ;-)
Regards, Lee -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nicolas Cannasse Sent: 02 June 2006 16:03 To: Neko intermediate language mailing list Subject: Re: [Neko] 64bit int > 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) -- Neko : One VM to run them all (http://nekovm.org)
