Is ATL still supported and developed

mxb1961 21 Reputation points
2022-05-15T18:03:02.847+00:00

Does development continue in ATL for Visual Studio/C++ 2022? If writing a new service on native OS, is this technology a preferred recommendation?

C++
C++
A high-level, general-purpose programming language, created as an extension of the C programming language, that has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation.
3,519 questions
0 comments No comments
{count} votes

Accepted answer
  1. RLWA32 40,021 Reputation points
    2022-05-15T18:20:22.57+00:00

    Yes, ATL is supported in visual studio 2022. It continues to be an effective tool for working with COM in C++.

    Having said that, without knowing more about what you mean by "a new service on native OS" I can't suggest whether or not ATL would be suitable in your circumstance.


1 additional answer

Sort by: Most helpful
  1. Castorix31 81,461 Reputation points
    2022-05-15T18:31:44.277+00:00

    You can see that some ATL fixes can be found in VS 2022, like : Visual Studio 2022 version 17.0.5
    And from MSDN, older article, but same thing in 2022 : MFC and ATL

    In Visual Studio 2017 and later, MFC and ATL are optional sub-components under the Desktop development with C++ workload in the Visual Studio Installer program. You can install ATL support without MFC, or combined MFC and ATL support (MFC depends on ATL).

    0 comments No comments