What's the differences between .dll , .lib, .h files?

后端 未结 3 535
深忆病人
深忆病人 2020-11-30 21:19

Why in a project should I include some *.lib, .h or some other files? And what are these things used for?

3条回答
  •  攒了一身酷
    2020-11-30 21:47

    • H Declares the interface to a library - including functions, structures, and constants. Written in the C language.
    • LIB Either declares the binary interface to a dynamic library (DLL) or contains the binary code of a library.
    • DLL A dynamic library - your application shares these with the system or you use them to keep your code base organized.
    • DEF A textual description of functions exported by a DLL.

提交回复
热议问题