_WIN32_WINNT

  • Thread starter Thread starter Mike Smith
  • Start date Start date
M

Mike Smith

All of the development that our project is doing is done for Windows 2000 or
greater. All of the Visual Studio Wizards for C++ default the _WIN32_WINNT
to Windows NT (0x0400). Is there a way to make the wizards default to
something other than _WIN32_WINNT?

Thanks,
Mike.
 
Mike said:
All of the development that our project is doing is done for Windows 2000 or
greater. All of the Visual Studio Wizards for C++ default the _WIN32_WINNT
to Windows NT (0x0400). Is there a way to make the wizards default to
something other than _WIN32_WINNT?

Change the following file to your likings (keep the original, just in case):

%VISUALSTUDIODIR%\Vc7\VCWizards\mfcappwiz\templates\1033\stdafx.h

Apart from mfcappwiz there are mfcctlwiz for OCX and mfcdllwiz for DLL.
 
Back
Top