Re: for the record, my ole32 binary tree search patch is correct

2009-10-28 Thread Yuriy Kaminskiy
On 28.10.2009 20:30, Vincent Povirk wrote: >> If I've not mistaken, that uses lstricmp internally for comparing keys. > > It uses lstrcmpiW, which according to MSDN can behave differently > based on locale, but I don't think the Wine version does. Note, that, it is not only difference in >0x7f "n

Re: for the record, my ole32 binary tree search patch is correct

2009-10-28 Thread Yuriy Kaminskiy
On 27.10.2009 22:50, Vincent Povirk wrote: > I sent the following patch recently: > > commit ee6856d874d687c4504914e61bcde3e6b8823bca > Author: Vincent Povirk > Date: Fri Oct 23 13:57:42 2009 -0500 > > ole32: Don't use IEnumSTATSTG to search for elements of storages. > > We use it to

Re: Wine and XShm support

2009-08-10 Thread Yuriy Kaminskiy
On 10.08.2009 12:24, Henri Verbeet wrote: >> at least add a registry key for it and disable it perhaps on 'modern >> drivers'). What do you guys think? > Could you do some benchmarking? You can disable XShm support by > passing "--without-xshm" to configure. Note that problem is only with *Shm*Pix

Re: [rfc] lstrcmpi: order still wrong (was "Re: Regression in lstrcmpiA (occurred in late June, NLS related)" from 2003 year)

2009-07-06 Thread Yuriy Kaminskiy
On 04.07.2009 23:55, Yuriy Kaminskiy wrote: > Yuriy Kaminskiy wrote: > I'm wrong - I don't have working windows installation at hands and cannot > check > that. Well, no answer so far; I thought "should write test, code is more welcomed than just words", and notice

Re: [rfc] lstrcmpi: order still wrong (was "Re: Regression in lstrcmpiA (occurred in late June, NLS related)" from 2003 year)

2009-07-04 Thread Yuriy Kaminskiy
Yuriy Kaminskiy wrote: >I've stumbled over problem with lstrcmpi sorting is still wrong. Some > japanese game engine uses binary search on presorted array, and fails > with a-la "object not found" errors. [...] > proper order should be "_" < "0&q

[rfc] lstrcmpi: order still wrong (was "Re: Regression in lstrcmpiA (occurred in late June, NLS related)" from 2003 year)

2009-07-03 Thread Yuriy Kaminskiy
Hello! Previous thread on this topic: http://www.mail-archive.com/wine-devel@winehq.org/msg01080.html I've stumbled over problem with lstrcmpi sorting is still wrong. Some japanese game engine uses binary search on presorted array, and fails with a-la "object not found" errors. Judging by

[patch] segv on use-after-free in dsound/buffer.c

2009-05-23 Thread Yuriy Kaminskiy
Hello! One of games rarely crashed with segv in line 86 of dsound/buffer.c: 85: IDirectSoundBuffer_Release((LPDIRECTSOUNDBUFFER)This->dsb); 86: This->dsb->notify = NULL; (sorry, I failed to save actual backtrace at the time). This looks like typical assign-after-free bug. I've app

Re: winebrowser and multi-word commands

2006-09-02 Thread Yuriy
browser should be in quotes - if there is a %s, the url is placed there rather than at the end - any number of arguments. Patch attached, thoughts? ~Yuriy On 8/17/06, Yuriy <[EMAIL PROTECTED]> wrote: Hi, I sent this to wine-patches last week and it hasn't been accepted yet, so I

Re: KDE wineconfig module & audio

2006-08-20 Thread Yuriy
On 7/21/06, Dan Kegel <[EMAIL PROTECTED]> wrote: On 7/20/06, Yuriy <[EMAIL PROTECTED]> wrote: > Also, I'd like to put in a button to test if sound is working. Is > there any software included in wine to play a wav? It needs to be > something that would be install

Re: winebrowser and multi-word commands

2006-08-17 Thread Yuriy
gv[1]: %s\n", argv1 ); spawnvp( _P_OVERLAY, app, argv_new ); /* only returns on error */ +free(appname); app = strtok( NULL, "," ); /* grab the next app */ } fprintf( stderr, "winebrowser: could not find a suitable app to run\n" ); On 8/7/0

Re: winebrowser and multi-word commands

2006-08-07 Thread Yuriy
( _P_OVERLAY, app, argv_new ); /* only returns on error */ +free(appname); app = strtok( NULL, "," ); /* grab the next app */ } fprintf( stderr, "winebrowser: could not find a suitable app to run\n" ); On 8/2/06, Yuriy <[EMAIL PROTECTED]> wrote:

winebrowser and multi-word commands

2006-08-02 Thread Yuriy
ww.winehq.org Considering: firefox argv[1]: http://www.winehq.org then it opens up with firefox. Is this a bug? Would it just be a matter of modifying the winebrowser script to fix? ~Yuriy

Re: Two Wine<->KDE integration projects

2006-07-21 Thread Yuriy
roject? No, only an individual may work on a given project. On 7/21/06, Kevin Krammer <[EMAIL PROTECTED]> wrote: On Thursday 20 July 2006 20:10, Yuriy wrote: > Uh-oh. > > I'm already well into making this. I guess we have a little > mis-/lack-of communication. I have info

KDE wineconfig module & audio

2006-07-20 Thread Yuriy
av? It needs to be something that would be installed by default when wine is installed, rather than something that's just in the source like the tests in winmm. Thanks for any help ~Yuriy

Re: wine-devel Digest, Vol 12, Issue 71

2006-07-20 Thread Yuriy
Uh-oh. I'm already well into making this. I guess we have a little mis-/lack-of communication. https://wiki.kubuntu.org/KDEGuidanceWineSpec As for ideas/testing -- yes please! It's part of guidance in kde svn. http://websvn.kde.org/trunk/playground/base/guidance/?rev=563975#dirli

Re: A great way for non programmers to help with Wine - Audio

2006-07-19 Thread Yuriy
Sound report: Kernel 2.6.15 Sound driver: snd_emu10k1 Sound card: Audigy2 ZS Sound driver description from lspci: Multimedia audio controller: Creative Labs SB Audigy (rev 04) 32 bit Kubuntu 6.06 system Alsa version 1.0.10-4ubuntu4 Tested against Wine 0.9.17 Results: Tested under wine

Re: Gnome and KDE wine configuration tools

2006-06-12 Thread Yuriy
e site, it's in SVN.  Input is good of course. ~Yuriy

License question

2006-05-22 Thread Yuriy
Hi, I might be making a configuration module for wine for KDE System Settings based on winecfg as a SoC project for Kubuntu, but I just realized that wine is LGPL and my project would have to be GPL, so I need to know how to reconcile that.  Any input ASAP would be greatly appreciated. Thank you,Y