It used to work for me without modification. I just added the vcproj file to my server solution and it was fine. I suspect that the affected code was changed when the 32/64 bit changes were made, but it doesn't really matter.
It's expecting _WINDOWS to be defined for the Windows build. Right-click the project, and go to C/C++->Preprocessor and add ;_WINDOWS to the end of the Preprocessor Definitions string for each build you want to support. Changes are you'll only build release so it's probably fine to just add it there.
|