zoukankan      html  css  js  c++  java
  • DLL学习笔记

    Dynamic-Link Libraries
    1. resource(no code)
    2. executable

    Although a dynamic-link library module can have any extension (such as .EXE or .FON), the standard extension is .DLL. Only dynamic-link libraries with the extension .DLL will be loaded automatically by Windows. If the file has another extension, the program must explicitly load the module by using the LoadLibrary or LoadLibraryEx function.

    An object library is a file with the extension .LIB containing code that is added to your program's .EXE file in the process called static linking when you run the linker.

    An import library is a special form of an object library file. Like object libraries, import libraries have the extension .LIB and are used by the linker to resolve function calls in your source code. However, import libraries contain no code. Instead, they provide the linker with information necessary to set up relocation tables within the .EXE file for dynamic linking.

    Object libraries and import libraries are used only during program development. Dynamic-link libraries are used during run time.

  • 相关阅读:
    jQuery UI炫酷雨滴落在水面上的波纹涟漪特效
    mysql_jdbc
    数据库设计---合适的就是最好的
    谈谈 .NET Reflector
    整型反序
    iOS给Model排序
    php安装zendDebug
    zTree实现地市县三级级联封装类
    rnnlm源代码分析(八)
    CSS制作响应式正方形及其应用
  • 原文地址:https://www.cnblogs.com/andy65007/p/1292144.html
Copyright © 2011-2022 走看看