Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Latest commit

 

History

History

dllcreating

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Creating DLL

Creating DLL in Visual Sutdio Environment.

visualstudioconfiguration

outputfile

External Resources

Notice

  • After compilation, we recieve .dll file & .lib file. Why we got lib? isnt it dynamic linking? well this file doesnt contain code, only the symbols of the exported dll functions. so linker can use this file to incept in executable the right references to our dll file. the dll file contains the code.
  • More info about linkers & loaders can be found briefly here or more detailed in some videos of The Life Of Binaries Course

Credit

  • Ilay Gilman