zeromq can be compiled into a static library with only lib, or into a dll, depending on the compilation options. The dll can be with or without lib. Dlls without lib must be exported by __stdcall and do not need to be linked. They are dynamically loaded using LoadLibrary when the program is running.
After being referenced, it will be embedded into the dll
zeromq can be compiled into a static library with only lib, or into a dll, depending on the compilation options. The dll can be with or without lib. Dlls without lib must be exported by __stdcall and do not need to be linked. They are dynamically loaded using LoadLibrary when the program is running.