Qt 6.11 is out! See what's new in the release
blog
Interaction of dlls between Qt dll and msvs dll
Language Bindings
2
Posts
2
Posters
2.5k
Views
1
Watching
-
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.