Re: Adding support for a USB device

2003-12-11 Thread Eric Pouech
I'm also not sure as to how much such an extension would be wishful in the context of Wine itself or if it would unnecessarily complicate the existing Wine architecture. Maybe someone with more insigth into NTDLL and its supposed architecture could explain more here? I'm currently working on this b

RE: Adding support for a USB device

2003-12-11 Thread Rolf Kalbermatter
Dan Timis [mailto:[EMAIL PROTECTED] wrote: > I did some further investigation and it looks like CreateFile > (actually > CreateFileW) looks at the filename and if it starts with "\\.\" it > calls DEVICE_Open(). DEVICE_Open() compares the file name > (without the > "\\.\" ) against all the ent

Re: Adding support for a USB device

2003-12-10 Thread Dan Timis
Thanks Rolf (and Uwe). I did some further investigation and it looks like CreateFile (actually CreateFileW) looks at the filename and if it starts with "\\.\" it calls DEVICE_Open(). DEVICE_Open() compares the file name (without the "\\.\" ) against all the entries in VxDList[] and if there is

Re: Adding support for a USB device

2003-12-10 Thread Rolf Kalbermatter
Message: 2 Date: Tue, 9 Dec 2003 14:56:16 -0800 Subject: Adding support for a USB device From: Dan Timis <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Hi, >I need help with supporting a particular USB device under wine. I have >to start by saying that although I am an experienced C/C++ programmer

Re: Adding support for a USB device

2003-12-09 Thread Uwe Bonnes
> "Dan" == Dan Timis <[EMAIL PROTECTED]> writes: Dan> Hi, I need help with supporting a particular USB device under wine. Dan> I have to start by saying that although I am an experienced C/C++ Dan> programmer with some Linux experience, I have almost no Windows or Dan> wine exp