In a C++ function I need the compiler to choose a different block if it is compiling for a 64 bit architecture.
I know a way to do it for MSVC++ and g++, so I\'ll po
#ifdef _LP64
Works on both platforms
Raymond covers this.