tags:

views:

1151

answers:

1

It seems to be added automagically in every project I create and I compile for x64 but it doesn't even appear in the project's Configuration Properties/(C/C++)/Preprocessor when selecting the x64 configuration.

+3  A: 

_WIN64 is automatically defined by Visual Studio. See the list of Predefined Macros.

emddudley