This is the compiler/linker job, it's done automatically as long as you
- include the .lib in the Linker options
- provide the DLL at runtime so that it's found by the exe
The .lib file is generated when you compile the DLL, or is shipped with it if it's not your code. In this case the code is compiled with __declspec(dllexport)
.
When compiling your exe, the compiler sees that the included function is to be found in DLL. In this case the code is compiled with __declspec(dllimport)
.
The linker is provided with the .lib file, and generates appropriate instructions in the exe.
These instructions will make the Exe find the DLL and load the exported function at runtime. The DLL just has to be next to the Exe (there are other possible places, however).
Switching between __declspec(dllimport)
and __declspec(dllexport)
is done by a macro, provided by Visual C++ when creating a DLL project.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…