I work with some inherited code that has this import:
#import "C:\Program Files\Common Files\System\ado\msado15.dll" rename("EOF", "EndOfFile")
The problem is that on the x64 machine, the path for this import is in the "Program Files (x86)" directory. Is there a preprocessor macro that I can wrap around it to make it work?
Edit1: I think I found. _M_X64, but im 100% sure this is correct. Edit2: _M_X64 looks like when you compile a FOR x64 processor. Not on one.
source
share