How to access external dll in qt (only dll file available dont have header file)
Unsolved
General and Desktop
-
i have vs2013 .net dll named as System.dll without header file. i want to add it in my qt creator application and access all function of dll .please reply
-
You need to have the header, there is nothing in Qt that would allow you to use a DLL without the header.
You can try to use QLibrary to load the DLL but without the header you can't really resolve any symbols from it.
@sierdzio thanks