Re: Project David

2004-05-08 Thread Mike McCormack
Ge van Geldorp wrote: There are some screenshots available now at http://www.flexbeta.net/main/articles.php?action=show&id=56 One of the comments on osnews noticed that in the picture http://www.flexbeta.net/images/david/winbridge_install.gif the second line in winbridge.lst is /etc/wine... There a

Fw: Project David

2004-05-08 Thread MediaHost \(TM\)
I see on http://www.flexbeta.net/images/david/office_install1.gif wine version 20040408 installed or at least there such a directory... Don't get fooled! Regards Signer: Eddy Nigg Company: StartCom Group at http://www.startcom.org MediaHostT at http://www.mediahost.org > -

Re: Project David

2004-05-08 Thread Tim Hentenaar
On Sun, 9 May 2004 00:44:28 +0200 "Ge van Geldorp" <[EMAIL PROTECTED]> wrote: > There are some screenshots available now at > http://www.flexbeta.net/main/articles.php?action=show&id=56 One of the > comments on osnews noticed that in the picture > http://www.flexbeta.net/images/david/winbridge_ins

Project David

2004-05-08 Thread Ge van Geldorp
There are some screenshots available now at http://www.flexbeta.net/main/articles.php?action=show&id=56 One of the comments on osnews noticed that in the picture http://www.flexbeta.net/images/david/winbridge_install.gif the second line in winbridge.lst is /etc/wine... There are more clues that thi

Re: supported apps page, crash reporting, and phoning home on success

2004-05-08 Thread Michael S. Zick
On Sat May 8 2004 02:16, Dan Kegel wrote: - - - Snip - - - > Maybe we need to add a 'phone home' sort of option > to Wine so that it gives people the option of > uploading crash and/or success data for each app the > user runs to winehq? To a new user of wine... That sounds good - a 'success' tra

Re: [PATCH] Updates the wine alsa driver to the new alsa api. No functionallity changes.

2004-05-08 Thread Roderick Colenbrander
There's some kmixer info (including examples) on msdn but the way it is organized is a pain. After clicking some links you in the end come to where you started. For example a start point might be this: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/stream/hh/stream/aud-design

Re: [lostwages] add urls to supported applications page

2004-05-08 Thread Mike Hearn
On Sat, 08 May 2004 22:16:57 +0300, hatky wrote: > winamp3 and winamp 4 for example work but winamp5 crashed becouse > of there new skin... FWIW: - there is no winamp 4 - winamp 5 works OK if you don't use the Modern skin (edit the ini file or don't install it). Modern requires abilities our

Re: supported apps page, crash reporting, and phoning home on success

2004-05-08 Thread Mike Hearn
On Sat, 08 May 2004 00:16:23 -0700, Dan Kegel wrote: > I was looking for a newbie project recommendation > (for someone else, not me!), and figured > "pick a popular windows app, and firm up wine support for it" > would be a good one. Well, depends how much they know about coding. Picking a random

Re: [lostwages] add urls to supported applications page

2004-05-08 Thread Dan Kegel
Hatky wrote: On Saturday 08 May 2004 09:57, Dan Kegel wrote: +5.58 (FIXME: 7.2?) Dan, Please don't put FIXMEs on the site, it is not hidden code, either check it to confirm or don't put that at all, same stance for the rest of your statments on the versions, you can't assume newer versions do

Re: [PATCH] Updates the wine alsa driver to the new alsa api. No functionallity changes.

2004-05-08 Thread James Courtier-Dutton
Roderick Colenbrander wrote: If you plan to rewrite parts of winmm/dsound it might be better to do it like Win2k/WinXP do it using "kmixer". This seems to be a redesign of the whole windows sound stuff. regards, Roderick Where are docs on "kmixer". I don't use WinXP etc. Cheers James

wininet asynchronous transfers

2004-05-08 Thread Kevin Koltzau
I noticed the wininet callbacks don't respond quite the same as windows does. Primarily the async calls complete almost immediately while on windows they don't respond at all until an alertable function is called (eg. SleepEx). Looking through the wininet code, I noticed we are using worker thread

Re: [PATCH] Updates the wine alsa driver to the new alsa api. No functionallity changes.

2004-05-08 Thread Roderick Colenbrander
If you plan to rewrite parts of winmm/dsound it might be better to do it like Win2k/WinXP do it using "kmixer". This seems to be a redesign of the whole windows sound stuff. regards, Roderick > Mike Hearn wrote: > > >On Fri, 2004-05-07 at 19:56 +, James Courtier-Dutton wrote: > > > > > >>I

Re: [PATCH] Updates the wine alsa driver to the new alsa api. No functionallity changes.

2004-05-08 Thread Jakob Eriksson
Mike Hearn wrote: On Fri, 2004-05-07 at 19:56 +, James Courtier-Dutton wrote: I have been working on improving wine support for alsa, but have run into some problems. Windows sound api is so incredibly bad. :-( Well, you don't work on Wine for the joy of working with the best tools ..

Fwd: Re: KP_Separator in the abnt2 keyboard

2004-05-08 Thread Rafael Ávila de Espíndola
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 - -- Mensagem repassada -- Subject: Re: KP_Separator in the abnt2 keyboard Date: Saturday 08 May 2004 03:49 From: Ivan Pascal <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Hi, Sorry for such long delay. > The

Linux Developers

2004-05-08 Thread Ahmed Soliman
Title: Message Hi All,   I am managing a large porting project for a banking case tool written in C/C++. We are using winelib to help us complete the port from Windows to Linux. I am seeking experienced programmers/contractors in C/C++ programming under Linux, in winelib, and preferably in S

Re: winmm WAVE_MAPPER patch

2004-05-08 Thread Eric Pouech
Wine on the other hand doesn't return an error when there are no devices. I haven't looked at the data it returns but it must be uninitialized garbage because there is no device to return the capabilities of. not exactly. The wave mapper itself (dlls/winmm/wavemap/wavemap.c, function wodGetCaps)

Re: winmm WAVE_MAPPER patch

2004-05-08 Thread Robert Reif
This problem was found while looking at the winetest results. Windows returns an error when asked to get the capabilities of the default device when there are no devices present. This makes sense because you have to have at least one device to have a default one. Wine on the other hand doesn't ret

Re: winmm WAVE_MAPPER patch

2004-05-08 Thread Eric Pouech
Robert Reif a écrit : Fixes a bug where waveOutGetDevCapsA succeeds with the WAVE_MAPPER device when there are no devices. I'm not sure this is best fix because the code is hard to follow but it does work. I'm not sure it's the right place to fix it. Did you try on windows what happens with waveOu

supported apps page, crash reporting, and phoning home on success

2004-05-08 Thread Dan Kegel
I was looking for a newbie project recommendation (for someone else, not me!), and figured "pick a popular windows app, and firm up wine support for it" would be a good one. Not knowing what apps are popular, I paid a visit to the winehq supported apps page. I noticed the page didn't have links to

Re: [lostwages] add urls to supported applications page

2004-05-08 Thread hatky
On Saturday 08 May 2004 09:57, Dan Kegel wrote: > +5.58 (FIXME: 7.2?) Dan, Please don't put FIXMEs on the site, it is not hidden code, either check it to confirm or don't put that at all, same stance for the rest of your statments on the versions, you can't assume newer versions do not have b