Re: [Cegcc-devel] DLL creation: cegcc vs. mingw32ce

2008-02-11 Thread Lance Fetters
Hey Danny, thanks for the reply. Danny Backx wrote: > Can you get your problems sorted out by always using a > mingw32ce-built DLL ? Preferably not mix up the environments at all ? My current project (porting the Enlightenment Foundation Libraries) is working so far with cegcc, but I would prefer

Re: [Cegcc-devel] DLL creation: cegcc vs. mingw32ce

2008-02-11 Thread Danny Backx
On Fri, 2008-02-08 at 17:11 +0900, Lance Fetters wrote: > I'm having trouble creating DLL files that are compatible between cegcc > and mingw32ce; > is there a difference in the way that these two work? > > I used the sample "hello world" DLL and DLL-loading program as described at: > http://www

Re: [Cegcc-devel] DLLs still need _initstdio() when linked to MSVC exe

2008-02-11 Thread janrinze
Hi, On Mon, 2008-02-11 at 10:55 +, Hywel B. Richards wrote: > Quite a while ago when I first started using cegcc I ran into a problem > when using cegcc-compiled DLLs with microsoft-compiled executables: > > > > My workaround was to add a call to _initstdio() in a special init > > > function

[Cegcc-devel] DLLs still need _initstdio() when linked to MSVC exe

2008-02-11 Thread Hywel B. Richards
Quite a while ago when I first started using cegcc I ran into a problem when using cegcc-compiled DLLs with microsoft-compiled executables: > > My workaround was to add a call to _initstdio() in a special init > > function in my DLL that I call before I make any other calls to the > DLL. > > Now