Re: dsound/tests: DirectSound3DListener_QueryInterface should accept IKsPropertySet

2010-02-11 Thread Joerg-Cyril.Hoehle
Hi, I don't know how others feel about this pattern: + ok(rc==DS_OK temp_buffer!=NULL, ... + if(temp_buffer) IKsPropertySet_Release(temp_buffer); I'd rather code like this if (rc==DS_OK temp_buffer) Release(). The reason is that the typical invariant is Any output variable is

Re: Adding wikipedia links to appdb?

2010-02-11 Thread Rosanne DiMesio
On Wed, 10 Feb 2010 21:38:56 -0800 Dan Kegel d...@kegel.com wrote: I often want to learn more about an app while I'm in the appdb, and particularly, I want to know whether it has a good reputation. Wikipedia can often tell me what I need to know. It might be handy to have a wikipedia url

Re: Adding wikipedia links to appdb?

2010-02-11 Thread David Gerard
[to list as well, *cough*] On 11 February 2010 11:35, Rosanne DiMesio dime...@earthlink.net wrote: On Wed, 10 Feb 2010 21:38:56 -0800 Dan Kegel d...@kegel.com wrote: I often want to learn more about an app while I'm in the appdb, and particularly, I want to know whether it has a good

Re: Adding wikipedia links to appdb?

2010-02-11 Thread André Hentschel
Rosanne DiMesio schrieb: On Wed, 10 Feb 2010 21:38:56 -0800 Dan Kegel d...@kegel.com wrote: I often want to learn more about an app while I'm in the appdb, and particularly, I want to know whether it has a good reputation. Wikipedia can often tell me what I need to know. It might be

Re: Adding wikipedia links to appdb?

2010-02-11 Thread Alexander Nicolaysen Sørnes
Torsdag 11 februar 2010 12:41:55 skrev André Hentschel : Rosanne DiMesio schrieb: On Wed, 10 Feb 2010 21:38:56 -0800 Dan Kegel d...@kegel.com wrote: I often want to learn more about an app while I'm in the appdb, and particularly, I want to know whether it has a good reputation.

Re: Adding wikipedia links to appdb?

2010-02-11 Thread Rosanne DiMesio
On Thu, 11 Feb 2010 12:57:54 +0100 Alexander Nicolaysen Sørnes a...@thehandofagony.com wrote: As for native versions, perhaps we want to store that info in the AppDb as well? It has been brought up a few times before. +1 Some entries already have that info in either the app description or

Adding wikipedia links to appdb?

2010-02-11 Thread Joerg-Cyril.Hoehle
-1 1. AFAIK, one can add (after submission, i.e. maintainers only) as many URL's as one wants. So one could well add one labeled Wikipedia article 2. I already have half a dozen of AppDB entries yet to write simply because it costs me a lot of time :-( - Research a possible URL for that

Re: user32: Remove leftover HINSTANCE16 code from LoadCursor/LoadIcon.

2010-02-11 Thread Alexandre Julliard
Michael Stefaniuc mstef...@redhat.de writes: The Wine code doesn't seem to pass a 16bit hinstance to LoadCursor/LoadIcon; the only calls to those functions from 16bit code use a 0 hinstance which is fine. 16-bit instances can come from 32-bit calls too, if we are dealing with a 16-bit window.

Re: runtest: search also for Applicationtests

2010-02-11 Thread Alexandre Julliard
André Hentschel n...@dawncrow.de writes: So it works with cmd.exe_test.exe.so now You should compute the right name based on the directory instead of guessing. -- Alexandre Julliard julli...@winehq.org

Re: Adding wikipedia links to appdb?

2010-02-11 Thread F Capela
- Original Message From: Rosanne DiMesio dime...@earthlink.net As for native versions, perhaps we want to store that info in the AppDb as well? It has been brought up a few times before. +1 Some entries already have that info in either the app description or maintainer notes,

Re: user32: Remove leftover HINSTANCE16 code from LoadCursor/LoadIcon.

2010-02-11 Thread Michael Stefaniuc
Alexandre Julliard wrote: Michael Stefaniuc mstef...@redhat.de writes: The Wine code doesn't seem to pass a 16bit hinstance to LoadCursor/LoadIcon; the only calls to those functions from 16bit code use a 0 hinstance which is fine. 16-bit instances can come from 32-bit calls too, if we are

Re: user32: Remove leftover HINSTANCE16 code from LoadCursor/LoadIcon.

2010-02-11 Thread Alexandre Julliard
Michael Stefaniuc mstef...@redhat.com writes: Alexandre Julliard wrote: Michael Stefaniuc mstef...@redhat.de writes: The Wine code doesn't seem to pass a 16bit hinstance to LoadCursor/LoadIcon; the only calls to those functions from 16bit code use a 0 hinstance which is fine. 16-bit

ptrace regression in Linux 2.6.33-rcX breaking Wine

2010-02-11 Thread Michael Stefaniuc
Hello guys, in case you have a Wine app that stopped working on Linux and you use 2.6.33-rcX kernels please give 2.6.32 a whirl. I finally sat down to track why the ntdll exception tests started to fail on my machines but not on other Fedora boxes. Turns out to be a regression in the Linux

Re: oleaut32: Fix rounding

2010-02-11 Thread Alexandre Julliard
André Hentschel n...@dawncrow.de writes: --- dlls/oleaut32/tests/varformat.c | 10 -- dlls/oleaut32/varformat.c |3 ++- dlls/oleaut32/variant.c |2 +- 3 files changed, 11 insertions(+), 4 deletions(-) It doesn't work: ../../../tools/runtest -q -P wine -M

Re: [PATCH 1/7] msctf: Add langbarmgr.c

2010-02-11 Thread Nikolay Sivov
On 2/11/2010 19:51, Justin Chevrier wrote: --- dlls/msctf/langbarmgr.c | 193 +++ 1 files changed, 193 insertions(+), 0 deletions(-) create mode 100644 dlls/msctf/langbarmgr.c +This =

Re: [PATCH 1/7] msctf: Add langbarmgr.c

2010-02-11 Thread Jacek Caban
Hi Justin, It's good that you're splitting patches, but you did it wrong. No patch may depend on another patch that is later in series. After applying each patch the tree must be in good state. That said, Wine won't compile after patch #1 until patch #6 is applied and patch #2 there will

Re: [PATCH 1/7] msctf: Add langbarmgr.c

2010-02-11 Thread Justin Chevrier
Thanks for the feed back! I should have went with my gut on these and sent them through together. They were really meant to all be applied in one go. Justin On Thu, Feb 11, 2010 at 12:22 PM, Nikolay Sivov bungleh...@gmail.com wrote: On 2/11/2010 19:51, Justin Chevrier wrote: ---  

Re: [PATCH 1/7] msctf: Add langbarmgr.c

2010-02-11 Thread Justin Chevrier
Thanks for the feedback. Would submitting this as one patch be acceptable? My intention was really to have all this applied in one go. If not, I'll split as recommended. I've got some fixing up to do and I'll resubmit. Justin On Thu, Feb 11, 2010 at 1:27 PM, Justin Chevrier jchevr...@gmail.com

Re: [PATCH 1/7] msctf: Add langbarmgr.c

2010-02-11 Thread Jacek Caban
On 2/11/10 7:46 PM, Justin Chevrier wrote: Thanks for the feedback. Would submitting this as one patch be acceptable? It's better to split them. It's easy to fix tour patch series. Just run git rebase -i to reorder and join patches. Jacek

Make issue with latest git

2010-02-11 Thread chris ahrendt
Just did the latest git and got the following : all -c wineapploader /usr/local/bin/`dirname programs/msiexec/__installprog__` /usr/bin/install: cannot create regular file `/usr/local/bin/programs/msiexec': No such file or directory make[1]: *** [programs/msiexec/__installprog__] Error 1

Re: Make issue with latest git

2010-02-11 Thread Austin English
On Thu, Feb 11, 2010 at 2:06 PM, chris ahrendt celtich...@yahoo.com wrote: Just did the latest git and got the following : all -c   wineapploader /usr/local/bin/`dirname programs/msiexec/__installprog__` /usr/bin/install: cannot create regular file `/usr/local/bin/programs/msiexec': No

Re: shell32[1/2]: implements shell link's GetCurFile (with tests, fixes bug #21297)

2010-02-11 Thread Mikołaj Zalewski
On Wed, Feb 10, 2010 at 9:32 PM, Nikolay Sivov bungleh...@gmail.com wrote: On 2/10/2010 23:28, Austin English wrote: 2010/2/10 Mikołaj Zalewskimiko...@zalewski.pl:  Some installers require this. +    expect_eq_x(S_FALSE, IPersistFile_IsDirty(pf)); +    expect_eq_x(S_FALSE,

Did today's git compile properly?

2010-02-11 Thread Susan Cragin
It's probably me... But I got the following: .1 make[1]: Leaving directory `/home/susan/wine/loader' make[1]: Entering directory `/home/susan/wine/programs' rm -f /usr/local/bin/`dirname programs/msiexec/__installprog__` /usr/bin/install -c wineapploader /usr/local/bin/`dirname

Re: Did today's git compile properly?

2010-02-11 Thread Austin English
On Thu, Feb 11, 2010 at 2:45 PM, Susan Cragin susancra...@earthlink.net wrote: It's probably me... But I got the following: .1 make[1]: Leaving directory `/home/susan/wine/loader' make[1]: Entering directory `/home/susan/wine/programs' rm -f /usr/local/bin/`dirname

Re: msxml3/tests: Some refcount tests

2010-02-11 Thread Nikolay Sivov
Forget about it, not so useful yet but adds even more questions. Ref count still doesn't match anyway.

Building list of great demos for Wine

2010-02-11 Thread Dan Kegel
[Sent this to wine-users, but maybe wine-devel folks are more likely to give demos and need a list like this.] I'm putting together a list of impressive freely-downloadable demos (or apps) that run flawlessly under Wine. i.e. platinum (no hacks, patches, or recipes needed), high production

Re: Building list of great demos for Wine

2010-02-11 Thread Reece Dunn
On 11 February 2010 21:40, Dan Kegel d...@kegel.com wrote: [Sent this to wine-users, but maybe wine-devel folks are more likely to give demos and need a list like this.] I'm putting together a list of impressive freely-downloadable demos (or apps) that run flawlessly under Wine. i.e.

Re: Building list of great demos for Wine

2010-02-11 Thread Dan Kegel
On Thu, Feb 11, 2010 at 1:55 PM, Reece Dunn mscl...@googlemail.com wrote:  http://wiki.winehq.org/GreatDemos Dan, loads of the casual games (PopCap Games and Awem Studios specifically) work out of the box without modification or winetricks. These tend to be impressive in terms of production

Re: Building list of great demos for Wine

2010-02-11 Thread Rosanne DiMesio
On Thu, 11 Feb 2010 13:40:31 -0800 Dan Kegel d...@kegel.com wrote: [Sent this to wine-users, but maybe wine-devel folks are more likely to give demos and need a list like this.] I'm putting together a list of impressive freely-downloadable demos (or apps) that run flawlessly under Wine.

Re: Building list of great demos for Wine

2010-02-11 Thread Reece Dunn
On 11 February 2010 22:04, Dan Kegel d...@kegel.com wrote: On Thu, Feb 11, 2010 at 1:55 PM, Reece Dunn mscl...@googlemail.com wrote:  http://wiki.winehq.org/GreatDemos Dan, loads of the casual games (PopCap Games and Awem Studios specifically) work out of the box without modification or

Re: ptrace regression in Linux 2.6.33-rcX breaking Wine

2010-02-11 Thread Scott Ritchie
Michael Stefaniuc wrote: Hello guys, in case you have a Wine app that stopped working on Linux and you use 2.6.33-rcX kernels please give 2.6.32 a whirl. I finally sat down to track why the ntdll exception tests started to fail on my machines but not on other Fedora boxes. Turns out to be a

Re: [PATCH 1/7] msctf: Add langbarmgr.c

2010-02-11 Thread Justin Chevrier
Thanks for the feed back! I should have went with my gut on these and sent them through together. They were really meant to all be applied in one go. Justin On Thu, Feb 11, 2010 at 12:22 PM, Nikolay Sivov bungleh...@gmail.com wrote: On 2/11/2010 19:51, Justin Chevrier wrote: ---  

Re: Building list of great demos for Wine

2010-02-11 Thread Austin English
On Thu, Feb 11, 2010 at 4:14 PM, Rosanne DiMesio dime...@earthlink.net wrote: On Thu, 11 Feb 2010 13:40:31 -0800 Dan Kegel d...@kegel.com wrote: [Sent this to wine-users, but maybe wine-devel folks are more likely to give demos and need a list like this.] I'm putting together a list of

Re: Building list of great demos for Wine

2010-02-11 Thread David Gerard
On 11 February 2010 22:46, Austin English austinengl...@gmail.com wrote: By demo I think Dan means applications/games that would make for a good demonstration of wine's capabilities/success, for example, to show at a LUG meeting/computer conference/etc. I just added Exact Audio Copy to the

Re: Building list of great demos for Wine

2010-02-11 Thread Dan Kegel
On Thu, Feb 11, 2010 at 2:27 PM, Reece Dunn mscl...@googlemail.com wrote: On 11 February 2010 22:04, Dan Kegel d...@kegel.com wrote:  http://wiki.winehq.org/GreatDemos ... I know that the following work well: 1.  Virtual City (http://www.awem.com/virtual-city.html) 2.  Born into Darkness

Intercepting GDI calls

2010-02-11 Thread Jui-Hao Chiang
Hi, all: I am currently starting a project which tries to run a window application on one (source) machine, and display on another (destination) machine. Of course, the VNC or X11 forwarding technique can achieve the same goal, but I am trying to reduce the bandwidth by not transferring the video

Re: Intercepting GDI calls

2010-02-11 Thread Charles Davis
Jui-Hao Chiang wrote: Hi, all: I am currently starting a project which tries to run a window application on one (source) machine, and display on another (destination) machine. Of course, the VNC or X11 forwarding technique can achieve the same goal, but I am trying to reduce the bandwidth