Re: [Mingw-w64-public] mingw And dlopen

2021-03-06 Thread Biswapriyo Nath
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

Re: [Mingw-w64-public] mingw And dlopen

2021-03-06 Thread Vincent Torri
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

[Mingw-w64-public] mingw And dlopen

2021-03-05 Thread Thomas Dineen
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