Are there in C++ specific Runtime files like MSVBVM60 in Visual Basic. Or are they just your 'includes' like #include...?
WP
Printable View
Are there in C++ specific Runtime files like MSVBVM60 in Visual Basic. Or are they just your 'includes' like #include...?
WP
Unless you make a dll or other external file for your program to use, C++ doesn't require runtimes. It links all the header files you use into the exe itself
Be careful when you use MFC. In that case your app will need the MFCxx.DLL to run. Ypu can statically link your exe with the Dll but in that case your app will be 1MB Min size. However the MFCxx.DLL is more probably to be on a user's computer than MSVBVMx0.DLL because much more apps use it. If you don't use MFC then don't care, your exe will run on every Windows Platform.