Re: dll name length (was: Windows dll replacement with Linux library)

2004-01-08 Thread Dan Timis
Thanks. I will try it and tell you if it worked. It may take a couple of weeks since we are frantically preparing for a trade show, then going to the trade show. Dan On Thursday, January 8, 2004, at 07:38 AM, Dimitrie O. Paun wrote: On January 6, 2004 10:04 pm, Dan Timis wrote: I finally fig

Re: dll name length (was: Windows dll replacement with Linux library)

2004-01-08 Thread Dimitrie O. Paun
On January 6, 2004 10:04 pm, Dan Timis wrote: > I finally figured out what my problem was. If the name of the library > is "USBUtils" it works, if it is "USBDeviceUtils" it doesn't. Actually > the max length I can use is 11 characters. That is probably 15 > characters including ".dll" > > In my

dll name length (was: Windows dll replacement with Linux library)

2004-01-06 Thread Dan Timis
I finally figured out what my problem was. If the name of the library is "USBUtils" it works, if it is "USBDeviceUtils" it doesn't. Actually the max length I can use is 11 characters. That is probably 15 characters including ".dll" In my config file all filesystems are "win95" The version i

Re: Windows dll replacement with Linux library

2004-01-05 Thread Dan Timis
On Saturday, January 3, 2004, at 01:07 AM, Dimitrie O. Paun wrote: I'm new to this so please bear with me. First I edited the Makefile and replaced gcc with winegcc. When I run "make" I get this error when it tries to link: could not open .def file for kernel32 Error: /usr/bin/winebuild failed.

Re: Windows dll replacement with Linux library

2004-01-03 Thread Dimitrie O. Paun
On January 2, 2004 05:13 pm, Dan Timis wrote: > Thanks Dimi, and "La multi ani" (Happy new year). Hey, La Multi Ani! to you too :))) > I'm new to this so please bear with me. > > First I edited the Makefile and replaced gcc with winegcc. When I run > "make" I get this error when it tries to link

Re: Windows dll replacement with Linux library

2004-01-02 Thread Dan Timis
Thanks Dimi, and "La multi ani" (Happy new year). I'm new to this so please bear with me. First I edited the Makefile and replaced gcc with winegcc. When I run "make" I get this error when it tries to link: could not open .def file for kernel32 Error: /usr/bin/winebuild failed. Error: /usr/bin

Re: Windows dll replacement with Linux library

2003-12-31 Thread Dimitrie O. Paun
On December 31, 2003 07:33 pm, Dan Timis wrote: > I don't understand how Windows dlls and Linux libraries link and how > functions are called. What am I missing? Please use winegcc to build the test app. It does a number of housekeeping tasks behing the scene that might help. -- Dimi.

Windows dll replacement with Linux library

2003-12-31 Thread Dan Timis
Sorry, I hit send by mistake. Here is the entire message. Hi, I wrote to the list a few weeks ago. I needed to support a USB device without changing the Windows dll that I have to use. I was trying to hack into wine to implement support for the USB device using CreateFile() and DeviceIoCon

Windows dll replacement with Linux library

2003-12-31 Thread Dan Timis
Hi, I wrote to the list a few weeks ago. I needed to support a USB device without changing the Windows dll that I have to use. I was trying to hack into wine to implement support for the USB device using CreateFile() and DeviceIoControl(). That was not a clean solution. The author of the W