Home > other >  How can I find Windows 10 dependent APIs from my C code and ensure it runs on Windows 11?
How can I find Windows 10 dependent APIs from my C code and ensure it runs on Windows 11?

Time:06-02

I have a C VS project which compiles and runs fine on Windows 10. By static analysis or by some trick, I want to migrate and compile the code to Window 11. How do I find the windows 10 dependent APIs and libraries from my code ?

CodePudding user response:

The details on the areas you should focus on testing for Windows 11 are in the Compatibility cookbook for Windows.

Note you didn't state what version(s) of Windows 10 you support already, but if you've been keeping up with the regular releases, you should be in good shape.

CodePudding user response:

There is no trick. Just install Windows 11 SDK and do the build. See here

  • Related