PDA

Click to See Complete Forum and Search --> : Runtime files


WP
Dec 18th, 2000, 08:44 AM
Are there in C++ specific Runtime files like MSVBVM60 in Visual Basic. Or are they just your 'includes' like #include...?

WP

Chris_SE
Dec 18th, 2000, 10:50 AM
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

Vlatko
Dec 18th, 2000, 01:05 PM
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.