From 43ec80ccd0e8bd0fee5ded218ed119b0eb5d43a6 Mon Sep 17 00:00:00 2001 From: drew batchelor Date: Tue, 18 Apr 2023 12:44:26 -0700 Subject: [PATCH 1/2] Update caxwindow-class.md --- docs/atl/reference/caxwindow-class.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/atl/reference/caxwindow-class.md b/docs/atl/reference/caxwindow-class.md index 4c266ad417c..1817a66fc3c 100644 --- a/docs/atl/reference/caxwindow-class.md +++ b/docs/atl/reference/caxwindow-class.md @@ -5,6 +5,12 @@ ms.date: "11/04/2016" f1_keywords: ["CAxWindow", "ATLWIN/ATL::CAxWindow", "ATLWIN/ATL::AttachControl", "ATLWIN/ATL::CreateControl", "ATLWIN/ATL::CreateControlEx", "ATLWIN/ATL::GetWndClassName", "ATLWIN/ATL::QueryControl", "ATLWIN/ATL::QueryHost", "ATLWIN/ATL::SetExternalDispatch", "ATLWIN/ATL::SetExternalUIHandler"] helpviewer_keywords: ["CAxWindow class", "ATL, hosting ActiveX controls"] ms.assetid: 85e79261-43e4-4770-bde0-1ff87f222b0f +api_type: +- DllExport +api_location: +- atlhost.dll +api_name: +- CAxWindow::CreateControlEx --- # CAxWindow Class From b8aef69520663b8cc7884d612e2ea6ed38acf7d8 Mon Sep 17 00:00:00 2001 From: AndrewDeanMS <45858683+AndrewDeanMS@users.noreply.github.com> Date: Tue, 18 Apr 2023 13:57:45 -0700 Subject: [PATCH 2/2] Update _MSC_VER values for 17.3, 17.4, and 17.5 --- docs/preprocessor/predefined-macros.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/preprocessor/predefined-macros.md b/docs/preprocessor/predefined-macros.md index cc6d2c4f16d..fd7ed9860d9 100644 --- a/docs/preprocessor/predefined-macros.md +++ b/docs/preprocessor/predefined-macros.md @@ -277,6 +277,9 @@ MSVC supports these additional predefined macros. | Visual Studio 2022 RTW (17.0) | 1930 | | Visual Studio 2022 version 17.1 | 1931 | | Visual Studio 2022 version 17.2 | 1932 | + | Visual Studio 2022 version 17.3 | 1933 | + | Visual Studio 2022 version 17.4 | 1934 | + | Visual Studio 2022 version 17.5 | 1935 | To test for compiler releases or updates in a given version of Visual Studio or after, use the `>=` operator. You can use it in a conditional directive to compare `_MSC_VER` against that known version. If you have several mutually exclusive versions to compare, order your comparisons in descending order of version number. For example, this code checks for compilers released in Visual Studio 2017 and later. Next, it checks for compilers released in or after Visual Studio 2015. Then it checks for all compilers released before Visual Studio 2015: