问题描述
我正在研究.dll文件,但我无法对它们进行记录。我在哪里可以找到有关.dll的一些功能和用法的所有细节。我正在寻找这些文件
I was researching .dll files, but I am unable to get documenation on them. Where can I find all the details about some of the functions and usage of a .dll. I am looking for these files
           
advapi32.dll
advapi32.dll
       
gdi32.dll
gdi32.dll
       
kernel32.dll
kernel32.dll
       
mfc42u.dll
mfc42u.dll
       
mscvrt.dll
mscvrt.dll
推荐答案
GDI32.DLL - 这是Windows的传统图形库。它是操作系统的一部分,仅通过Windows Update或官方服务包进行更新。
GDI32.DLL - This is the legacy graphics library for Windows. It is part of the OS and is only updated through Windows Update or official service packs.
KERNEL32.DLL - 这是基本上所有Windows程序使用的"核心"Win32 API。它是操作系统的一部分,仅通过Windows Update或官方服务包进行更新。
KERNEL32.DLL - This is the 'core' Win32 APIs used by basically all Windows programs. It is part of the OS and is only updated through Windows Update or official service packs.
MFC42U.DLL - 这是旧版Microsoft基础类4.2(Unicode)。这不是操作系统本身的一部分,但是被相当多的旧程序使用。使用Visual C ++(MFC100 * .DLL)构建的MFC程序使用较新的MFC DLL。这些都是通常由需要它的程序安装程序附带的Visual C ++ REDIST软件包安装的
。
MFC42U.DLL - This is the legacy Microsoft Foundation Classes 4.2 (Unicode). This is not part of the OS proper, but is used by a fair number of old programs. There are newer MFC DLLs used by MFC programs built with Visual C++ (MFC100*.DLL). These are all typically installed by a Visual C++ REDIST package included with a program installer that needs it.
MSVCRT.DLL - 这是OS的Visual C ++运行时版本。它仅供Windows操作系统组件使用。还有 运行时的其他版本(MSVCR100 * .DLL)供使用Visual C ++构建的"零售"程序使用。同样,这些零售版本
由Visual C ++ REDIST部署。
MSVCRT.DLL - This is the OS's version of the Visual C++ runtime. It is only for use by Windows OS components. There are other versions of the runtime (MSVCR100*.DLL) for use by 'retail' programs built using Visual C++. Again, these retail versions are deployed by the Visual C++ REDIST.
这篇关于这些.dll文件有什么作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!