Re: how do static import libraries actually work?
<kilik3000@gmail.com> wrote in message
news:1180634705.788856.237880@p77g2000hsh.googlegroups.com...
One thing I've never really understood are import libraries for DLLs
on Windows.
For example, let's say that I use a function from user32.dll in my
code. Without linking to user32.lib in VS I get a link error, so I
link to user32.lib and all is well.
I guess what I don't understand is how this jives with static linking
and dynamic linking.
From what I understand, static linking is when you take object code
and just plop it into your binary.
Dynamic linking (on windows at least) is when you call LoadLibray()
and then GetProcAddress() and then make your call on a function
pointer.
What happens when you statically link to a DLL import library (i.e.
user32.lib)?
The linker creases DLL Import Descriptors in the linked image. The OS
loader uses those import descriptors to load the referenced DLL(s).
Does the import library object code contain implicit calls to
LoadLibray() and GetProcAddress that are performed on your behalf?
No, just data that's used by the OS Loader. If you use "Delay Loading",
then the linker does actually inject code that calls
LoadLibrary/GetProcAddress when any of the imported functions is called the
first time. After loading the DLL, the injected code overwrites the hook
code to jump directly to the loaded code.
Try doing dumpbin /all on a few different kinds of files (.OBJ, .LIB, .DLL,
..EXE) to see what's inside. Warning - the output from dumpbin /all will be
HUGE (there are lots of options to dump less - use dumpbin /? to find out
about them).
-cd