Re: Call functions from Cygwin compiled dll.

2016-06-24 Thread Hans-Bernhard Bröker
Am 24.06.2016 um 09:57 schrieb Azatyan, Anushavan: I have build in cygwin environment my own dll which calls standard unix like functions (fopen, fclose, fread …). I'll interrupt you right there. No, those are not "unix like functions". Those are Standard C Library functions, i.e. they're req

Re: Call functions from Cygwin compiled dll.

2016-06-24 Thread Eliot Moss
On 6/24/2016 3:57 AM, Azatyan, Anushavan wrote: Hi, I have build in cygwin environment my own dll which calls standard unix like functions (fopen, fclose, fread …). And now I would like to attach that dll to my program which is developed in Visual Studio environment and call some of my function

Re: Call functions from Cygwin compiled dll.

2016-06-24 Thread Xi Shen
If you build your DLL in Cygwin environment, chances are you DLL depends on mingw32 DLLs...so you have to build your VS project with all the mingw32 dependencies. Xi Shen about.me/davidshen On Fri, Jun 24, 2016 at 3:57 PM, Azatyan, Anushavan wrote: > Hi, > I have build in cygwin environment my

Call functions from Cygwin compiled dll.

2016-06-24 Thread Azatyan, Anushavan
Hi, I have build in cygwin environment my own dll which calls standard unix like functions (fopen, fclose, fread …). And now I would like to attach that dll to my program which is developed in Visual Studio environment and call some of my function from that dll. Or I would like to call functions