In Microsoft Windows platform, LoadLibrary function is used to load DLLs
dynamically. Some projects do like this:
#ifdef _WIN32
ret = LoadLibrary(...)
#else
ret = dlopen(...)
#endif
If you want to use dlopen() in Microsoft Windows platform there is an
unofficial wrapper repository here
https://gi
Hello
On Sat, Mar 6, 2021 at 8:48 AM Thomas Dineen wrote:
>
> Gentle People:
>
> Do any of you have experience with Mingw gcc and dlopen for
> dynamic (under application
> program control) loading of libs. Specifically I am looking at passing
> externs into C functions
> included in a dll l
Gentle People:
Do any of you have experience with Mingw gcc and dlopen for
dynamic (under application
program control) loading of libs. Specifically I am looking at passing
externs into C functions
included in a dll library. I have been able to make this work just fine
using gcc on Solari