Interaction of dlls between Qt dll and msvs dll
-
If you use QtCreator, call new project, select a dll project and that's it, there is a dll.
Using a dll is a very basic thing in C/C++ and not Qt related, and it depends on how the dll tio use is created.does it have C exported functions? then you could load it with QLibrary and call resolve to get the function pointers
Or you include the header file and linky dynamically to it
or it has exported classes, then you MUST link dynamically to it.