Reputation: 2320
This is probably a basic question, but I've struggled to find the answer.
I know the Visual C++ redistributables and Windows 10 CRT tried to remove DLL Hell, but is the VCRedist from Update 1 backward compatible?
Problem
Worry
Will my code function as before?
I assume entry points may have changed, parameters changed, it will probably break.
I have 2 million lines of code, I can't check them all.
Links
I thought compatibility might be explained here, but I can't see it http://blogs.msdn.com/b/vcblog/archive/2015/03/03/introducing-the-universal-crt.aspx?PageIndex=5#comments
What am I doing to help myself?
I'm in the process of 'anecdotal testing', but I'd appreciate any links to the official answer to develop with confidence.
Upvotes: 2
Views: 946
Reputation: 355069
Yes. Newer builds are backwards compatible with older builds including previous Updates, the RTM release, and the RC release.
Upvotes: 5