How to unload the L&L DLLs?

Hello Forum Members,

is there a possibility to unload the whole L&L DLLs from the calling program?
I do start & end the jobs with the LLJobOpen/LLJobclose and the do some logical stuff and print the job.
Afterwards the DLL’s remain loaded by the process (see the attached ProcessExplorer screenshot).

Hi!
What programming language are you using?
If you load DLLs statically, they will be unloaded when closing you application.
In C++ you could use the .hx-files instead of the .h files for dynamic loading using LoadLibrary (LoadLibraryA function (libloaderapi.h) - Win32 apps | Microsoft Learn).

Regards,
HP