Re: [Mingw-w64-public] i64 constants for microsoft code compatibility

2010-10-10 Thread James K Beard
C compilers; any one of them will fix your problem, except Microsoft. James K Beard -Original Message- From: NightStrike [mailto:nightstr...@gmail.com] Sent: Saturday, October 09, 2010 10:44 PM To: Kai Tietz; Jim Michaels Cc: mingw64 Subject: Re: [Mingw-w64-public] i64 constants for

Re: [Mingw-w64-public] i64 constants for microsoft code compatibility

2010-10-09 Thread NightStrike
Jim, are you able to answer Kai's request below, assuming it wasn't done elsewhere? On Wed, Oct 6, 2010 at 1:04 PM, Kai Tietz wrote: > 2010/10/6 Ruben Van Boxem : >> 2010/10/6 Jim Michaels : >>> If you are trying to achieve microsoft VC++ base code compatibility, (which >>> I hope you are), there

Re: [Mingw-w64-public] i64 constants for microsoft code compatibility

2010-10-06 Thread Kai Tietz
2010/10/6 Ruben Van Boxem : > 2010/10/6 Jim Michaels : >> If you are trying to achieve microsoft VC++ base code compatibility, (which >> I hope you are), there are issues that need to be dealt with to be able to >> compile windows code. >> >> - unsigned 64-bit constants need to be ended with ULL fo

Re: [Mingw-w64-public] i64 constants for microsoft code compatibility

2010-10-06 Thread Ruben Van Boxem
2010/10/6 Jim Michaels : > If you are trying to achieve microsoft VC++ base code compatibility, (which > I hope you are), there are issues that need to be dealt with to be able to > compile windows code. > > - unsigned 64-bit constants need to be ended with ULL for unsigned GNU > compatibility, sig

[Mingw-w64-public] i64 constants for microsoft code compatibility

2010-10-05 Thread Jim Michaels
If you are trying to achieve microsoft VC++ base code compatibility, (which I hope you are), there are issues that need to be dealt with to be able to compile windows code. - unsigned 64-bit constants need to be ended with ULL for unsigned GNU compatibility, signed is LL for GNU compatibility,