Reputation: 2244
I've got Visual Studio 2008 express, and I need to use afx.h and some other things from MFC. Is there an SDK I can download that includes those? I downloaded the latest Windows SDK, but that didn't include it.
Thanks.
Upvotes: 4
Views: 3963
Reputation: 1911
This question is rather old but i felt i needed to spread some truth and negate some of the fantasies about MFC :
Its is completely free and always will be. You simply need to deploy the REDIST packages instead of your MSVC library as described here :
https://learn.microsoft.com/en-us/cpp/ide/redistributing-the-mfc-library
https://www.visualstudio.com/en-us/productinfo/2017-redistribution-vs
https://learn.microsoft.com/en-us/cpp/ide/redistributing-visual-cpp-files
https://msdn.microsoft.com/en-us/library/ms235299.aspx
Upvotes: 0
Reputation: 99685
MFC isn't free. You should buy at least Standard Edition of the Visual Studio.
Upvotes: 2
Reputation: 3218
MFC is the proprietary class collection for Microsoft paid customer so I don't think you can get them FOC (well legally of course).
You can consider Win32++ which attempt to mimic MFC functionalities and its open source.
Upvotes: 2