Re: [PHP-DEV] Repost : 64 Bit Integer support

2003-11-06 Thread Michael Walter
Maybe something like that could help you: #define HAS_INT64_PRIMITIVE #ifdef MSVC #define int64_t __int64 #elif ... #else typedef struct int64_t_ { int32_t a, b; } int64_t; #undef HAS_INT64_PRIMITIVE #endif - Michael -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: h

Re: [PHP-DEV] Repost : 64 Bit Integer support

2003-11-05 Thread l0t3k
thanks, wez > There is probably a configure check somewhere (the bundled mysql client > library from 4.3 branch comes to mind) that you can use to make the decision > on 64 bit support. my concern is not the configure check, per se. im just concerned that having the extension depend on 64bit supp

Re: [PHP-DEV] Repost : 64 Bit Integer support

2003-11-05 Thread Wez Furlong
decision on 64 bit support. --Wez. - Original Message - From: "l0t3k" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, November 06, 2003 1:58 AM Subject: [PHP-DEV] Repost : 64 Bit Integer support > Question : > is there any one of the supported plat

[PHP-DEV] Repost : 64 Bit Integer support

2003-11-05 Thread l0t3k
Question : is there any one of the supported platforms that dont support a 64 bit integer type. i'm not referring to the native int size. for one i can think of Windows 95/98. i'm porting a library and i need to know this so i can determine how to proceed. l0t3k -- PHP Internals - PHP Runtime