Re: wineconsole: Wait on events in curses backend using select insteadof poll

2008-12-04 Thread James McKenzie
Dmitry Timoshkov wrote: > "James McKenzie" <[EMAIL PROTECTED]> wrote: > >> Martin Storsjö wrote: >>> >>> poll can't handle terminal devices on Darwin, since Tiger. See the >>> following discussion: >>> http://lists.apple.com/archives/Darwin-dev/2006/Apr/msg00066.html >>> >> This will have to be set

Re: [PATCH] comdlg32: Avoid passing NULL to FILEDLG95_LOOKIN_InsertItemAfterParent.

2008-12-04 Thread Vincent Povirk
Hi, I think you need to free the pidl you get from SHGetSpecialFolderLocation. Vincent Povirk On Thu, Dec 4, 2008 at 4:57 PM, Lei Zhang <[EMAIL PROTECTED]> wrote: > Hi, > > This is my second attempt to fix bug 16332. We can make sure > FILEDLG95_LOOKIN_InsertItemAfterParent() doesn't infinite

Re: Package repository discussion

2008-12-04 Thread Dan Kegel
On Thu, Dec 4, 2008 at 4:01 PM, Scott Ritchie <[EMAIL PROTECTED]> wrote: > I'll be there. I proposed a similar thing that never quite happened > last year (ThirdPartyApt), but only because I didn't really have time to > write the actual code. Yeah, saw that. I guess I should link to it. See you

Re: Package repository discussion

2008-12-04 Thread Scott Ritchie
Dan Kegel wrote: > Ubuntu is having a meeting next week to discuss > how to more easily grant users access to third > party repositories (like wine's, perhaps). > > I've got a meeting wiki up at > http://wiki.winehq.org/TrustingThirdPartyRepositories > It already lists the big issues that need di

Re: Alexandre Julliard : wintab32: Make a function static.

2008-12-04 Thread Francois Gouget
On Thu, 4 Dec 2008, Alexandre Julliard wrote: [...] > -UINT WINAPI WTInfoT(UINT wCategory, UINT nIndex, LPVOID lpOutput, BOOL > bUnicode) > +static UINT WTInfoT(UINT wCategory, UINT nIndex, LPVOID lpOutput, BOOL > bUnicode) So how do you know which functions to make static? I guess you don't

Re: Package repository discussion

2008-12-04 Thread Dan Kegel
On Thu, Dec 4, 2008 at 5:55 AM, Marcus Meissner <[EMAIL PROTECTED]> wrote: >> http://wiki.winehq.org/TrustingThirdPartyRepositories > > Well, openSUSE 11.0/11.1 use a remote hosted XML file which provides > a list of repositories for addition, and also single-click "YMP" files > for very easy repo

Re: Package repository discussion

2008-12-04 Thread Marcus Meissner
On Thu, Dec 04, 2008 at 05:45:21AM -0800, Dan Kegel wrote: > Ubuntu is having a meeting next week to discuss > how to more easily grant users access to third > party repositories (like wine's, perhaps). > > I've got a meeting wiki up at > http://wiki.winehq.org/TrustingThirdPartyRepositories > It

Package repository discussion

2008-12-04 Thread Dan Kegel
Ubuntu is having a meeting next week to discuss how to more easily grant users access to third party repositories (like wine's, perhaps). I've got a meeting wiki up at http://wiki.winehq.org/TrustingThirdPartyRepositories It already lists the big issues that need discussing. If you're interested

Re: patch for gdi32

2008-12-04 Thread Markus Hitter
Am 04.12.2008 um 00:38 schrieb Xiangrong Fang: > but that is marked as FIXED and CLOSED?? Yes, Wine developers are sometimes pretty quick at closing bugs. The sad thing is, you can't comment on closed bugs and have to open a new one. > BTW, for these discussions, shall I use wine-devel or w

Re: patch for gdi32

2008-12-04 Thread Xiangrong Fang
Hi Dan, Thank you for your explanations! It is indeed bug #4065. I read the info there, although I don't fully understand every bit information there, but that is marked as FIXED and CLOSED?? As far as I know, this is NOT fixed yet, and it affect a HUGE amount of Chinese applications, those appl

re: wineconsole: Wait on events in curses backend using select instead of poll

2008-12-04 Thread Dan Kegel
James McKenzie wrote: > This will have to be setup so that it only works for Macs. > ... it does not belong in the Wine code stack. Why? Select is a perfectly reasonable choice -- and arguably preferable to poll -- when you are absolutely sure that no file descriptor higher than 1023 can be passe

Re: dsound: fix remaining ds3d, dsound, dsound8 test failures shown on test.winehq.org

2008-12-04 Thread Paul Vriens
Jeff Zaroyko wrote: > On Thu, Dec 4, 2008 at 7:35 PM, Paul Vriens <[EMAIL PROTECTED]> wrote: >> Jeff Zaroyko wrote: >>> This should clear up the remaining dsound test failures shown for the >>> Win98 and WinME test results. >>> >>> >>> ---

Any problems with these wineconsole patches?

2008-12-04 Thread Martin Storsjö
Hi, In addition to the select vs poll patch to wineconsole, I sent two other unrelated minor patches for wineconsole last Friday (attached here); are there any obvious problems with these, prohibiting them from getting merged? The first one simply makes fallbacks from the curses to the user

Re: dsound: fix remaining ds3d, dsound, dsound8 test failures shown on test.winehq.org

2008-12-04 Thread Jeff Zaroyko
On Thu, Dec 4, 2008 at 7:35 PM, Paul Vriens <[EMAIL PROTECTED]> wrote: > Jeff Zaroyko wrote: >> >> This should clear up the remaining dsound test failures shown for the >> Win98 and WinME test results. >> >> >> >> >> > Hi Jeff

Re: dsound: fix remaining ds3d, dsound, dsound8 test failures shown on test.winehq.org

2008-12-04 Thread Paul Vriens
Jeff Zaroyko wrote: > This should clear up the remaining dsound test failures shown for the > Win98 and WinME test results. > > > > > Hi Jeff, Would be a nice-to-have if you could add the platforms as comments to the dif

Re: wineconsole: Wait on events in curses backend using select instead of poll

2008-12-04 Thread Martin Storsjö
On Thu, 4 Dec 2008, Damjan Jovanovic wrote: On Mon, Dec 1, 2008 at 11:57 AM, Martin Storsjö <[EMAIL PROTECTED]> wrote: But there may of course be other reasons for using poll, which I don't know about. select() not only has a hard limit on the number of file descriptors (1024 or whatever) th