vs. upgrading C + + projects encountered some problems

Source: Internet
Author: User

1. Error C1189: #error: This file requires _win32_winnt to is #defined at least to 0x0403. Value 0x0501 or higher is recommended.

In the stdafx.h of the project, change to the following configuration:

#ifndef WINVER #define WINVER 0x0501 #endif

#ifndef _win32_winnt #define _WIN32_WINNT 0x0501 #endif

#ifndef _win32_windows #define _win32_windows 0x0501 #endif

#ifndef _win32_ie #define _win32_ie 0x0601 #endif

Reference: https://msdn.microsoft.com/zh-cn/library/windows/desktop/aa383745 (v=vs.85). aspx

2, error rc2104:undefined keyword or key name:afx_ids_invalid_arg_exception.

Copy the header file "Afxres.h" (Under ... \vs installation directory \vc\atlmfc\include\) containing "fx_ids_invalid_arg_exception" to the project folder.

vs. upgrading C + + projects encountered some problems

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.