"Jeff Loucks" <[EMAIL PROTECTED]> a écrit dans le message de news: [EMAIL PROTECTED]
> Most compilers these days understand at least 'long long' or QWord, which > is an 8 byte (64 bit) integer. >This is not a native size on Palm, but is supported in code. > Just to add to Jeff's comment, "long long" and "unsigned long long" are supported by codewarrior (I use that type in some of my code) I don't know if PODS supports it. long long is signed 64 bit integer, range: -(2^63) to (2^63)-1 unsigned long long is unsigned 64 bit integer, range: 0 to (2^64)-1 -- Regis St-Gelais www.laubrass.com -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/
