RE: Creating DLLs using c++/g++

2002-04-02 Thread Suhanthan Vanniyasingam
TED]] Sent: Tuesday, April 02, 2002 9:55 PM To: Suhanthan Vanniyasingam; '[EMAIL PROTECTED]' Cc: Narasimha Sarma; Nandika Mirihana Subject: Re: Creating DLLs using c++/g++ At 07:41 AM 4/2/2002, Suhanthan Vanniyasingam wrote: >Hi, > >I have created DLLs by using the following com

REt: Creating DLLs using c++/g++

2002-04-02 Thread Danny Smith
> From: Suhanthan Vanniyasingam > I have created DLLs by using the following command > "gcc -Wl,--out-implib,libmydll.import.a -shared -o mydll.dll > mydll.o" > and used with a VC++ application. > But I have tried the same command with c++ and g++. It's creating the DLL. > But the functio

Re: Creating DLLs using c++/g++

2002-04-02 Thread Larry Hall (RFK Partners, Inc)
At 07:41 AM 4/2/2002, Suhanthan Vanniyasingam wrote: >Hi, > >I have created DLLs by using the following command > "gcc -Wl,--out-implib,libmydll.import.a -shared -o mydll.dll >mydll.o" >and used with a VC++ application. > >But I have tried the same command with c++ and g++. It's creating t

Creating DLLs using c++/g++

2002-04-02 Thread Suhanthan Vanniyasingam
Hi, I have created DLLs by using the following command "gcc -Wl,--out-implib,libmydll.import.a -shared -o mydll.dll mydll.o" and used with a VC++ application. But I have tried the same command with c++ and g++. It's creating the DLL. But the functionality is not accessible by VC++ applic