这些DLL都是对应于msvcrt.lib的动态链接库。msvcrt.lib是编译时用的,DLL是运行时用的。
msvcr70/80/90.dll是不同版本的动态链接库,分别对应于Visual C++ 6.0/Visual Studio 2005和2008。
msvcrt.dll现在已经被msvcr70/80/90.dll取代了,也就是说,编译的时候用msvcrt.lib,运行的时候将使用msvcr70/80/90.dll。关于msvcrt.dll,我所知道的是它被提供给系统层级的一些组件使用。
另外,建议你使用更高版本的Visual C++,微软已经不再支持Visual C++ 6.0了。
谢谢。
Damon Zheng
MSDN Community Support | Feedback to us
Develop and promote your apps in Windows Store
Please remember to mark the replies as answers if they help and unmark them if they provide no help.