"Robert" == Robert Shearman R.J.Shearman@warwick.ac.uk writes:
Robert> Uwe Bonnes wrote: >> Alexandre> Long long constants are not portable, you need to compute Alexandre> them from long constants. >> The wine code is sprankled with LONGLONG constants, e.g.: >> >> dlls/oleaut32/variant.c: LONGLONG lVal = -1; >>
Robert> He means constants like 0x12345689LL. You have to do this Robert> instead: (LONGLONG)0x1 << 32 | (LONGLONG)0x23456789.
Okay!.
Any hint how to do for this for decimal numbers?