Determing 32 or 64 bit
Re: Determing 32 or 64 bit
Hi,
With the 32 bit compiler an integer variable is 4 bytes
With the 64 bit complier an integer variable is 8 bytes
So maybe Debug SizeOf(Integer) might provide a hint?
RichardL
With the 32 bit compiler an integer variable is 4 bytes
With the 64 bit complier an integer variable is 8 bytes
So maybe Debug SizeOf(Integer) might provide a hint?
RichardL
Re: Determing 32 or 64 bit
not at runtime. It doesnt check the OS this program is executed...RichardL wrote:Hi,
With the 32 bit compiler an integer variable is 4 bytes
With the 64 bit complier an integer variable is 8 bytes
So maybe Debug SizeOf(Integer) might provide a hint?
RichardL
And there is a "better readable" way to test it with "#PB_Compiler_Processor = #PB_Processor_x64/x86" ...