Ray Mond
2009-08-18 08:39:33 UTC
I have a DLL that's compiled to 32-bit and 64-bit platforms (x64 and
Itanium). In the 64-bit version, I would like to run some additional code.
How can I check from within the DLL if it is going to be compiled to the
64-bit version i.e.
if (platform == 64bit) // need a check here
{
some additional code...
};
Thanks in advance.
Ray Mond
Itanium). In the 64-bit version, I would like to run some additional code.
How can I check from within the DLL if it is going to be compiled to the
64-bit version i.e.
if (platform == 64bit) // need a check here
{
some additional code...
};
Thanks in advance.
Ray Mond