Is it possible for DLL to access resources from EXE?
Unsolved
General and Desktop
-
I have an application consisting of an EXE + a DLL. The main application (EXE) has embedded resources (.qrc). Is it possible to make these resources available to the DLL?
-
Hi
You could- also link the resources into the DLL OR
- make the dll use the resources via function calls with the actual type OR
( u open/read resource and sent to dll) - make the resource external and make both App and Dll load it.