My objective is to detect Windows 10 in my code which has to work cross-platform as well as across different versions of Windows (atleast 7 & up). Windows provides IsWindows10OrGreater()
to tackle this problem, but there's another issue with it, this function isn't present in previous windows versions.
You'll find countless blogs and SO questions regarding this as well as the manifest madness where functions like this and getversion and others return some different version rather than the correct one.
For example on my machine - the method IsWindows10OrGreater()
doesn't compile(I would've to install Win10 SDK), and IsWindowsVersionOrGreater()
reports 6
as major version.
So is there a sane multi-version way I could solve this problem?