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.

  • 相关阅读:
    Python基本命名规范
    复制当前文件夹下所有文件的名称
    Java中返回类型方法名
    BugFree 测试管理系统
    jmeter+badboy免费测试
    Linux的命令
    C语言
    linux基础知识点以及安装
    JMeter安装教程
    linux 操作命令
  • 原文地址:https://www.cnblogs.com/andy65007/p/1292144.html
Copyright © 2011-2022 走看看