|
-
Dec 18th, 2000, 09:44 AM
#1
Thread Starter
Hyperactive Member
Are there in C++ specific Runtime files like MSVBVM60 in Visual Basic. Or are they just your 'includes' like #include...?
WP
-
Dec 18th, 2000, 11:50 AM
#2
Addicted Member
No
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
-
Dec 18th, 2000, 02:05 PM
#3
Frenzied Member
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|