Re: Trying again

2010-05-04 Thread James McKenzie
Joakim Tjernlund wrote: This didn't show up in the archives, so trying again. >From 7882df972ec827f0e7b7b622c01be2644e54d122 Mon Sep 17 00:00:00 2001 From: Joakim Tjernlund Date: Mon, 3 May 2010 20:30:32 +0200 Subject: [PATCH] RegisterWaitForSingleObject() fix special tmo == 0 case. At http://

Re: user32/tests: Remove variable hdata which is not really used from test_initialisation.

2010-05-04 Thread testbot
Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=1902 Your paranoid android.

Re: kernel32/tests: Remove variable len which is not really used from test_CommandLine.

2010-05-04 Thread testbot
Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at http://testbot.winehq.org/JobDetails.pl?Key=1901 Your paranoid android.

Re: Stack corruption in dsound.c

2010-05-04 Thread Juan Lang
> So how do i find out, why HeapAlloc does not return sane values like > in first call of DirectSoundDevice_Create()? Sounds like heap corruption. Try using valgrind to see if there are memory errors before the second call to DirectSoundDevice_Create(). --Juan

Re: RegisterWaitForSingleObject() fix special tmo == 0 case.

2010-05-04 Thread Charles Davis
On 5/4/10 12:06 AM, Joakim Tjernlund wrote: > > Here are two versions Generally, it's a bad idea to put two patches in one mail. You should instead have two separate emails, one for each patch. Chip

Stack corruption in dsound.c

2010-05-04 Thread wylda
Hi, for those of readers who don't know yet, i'm a "Hello word" programmer, so sorry for bad wording or speculation etc. I decided to look into a regression since wine 1.1.30, who nobody apparently not know what to do, otherwise it would be solved ;) The game freezes during sound initialization a

Trying again

2010-05-04 Thread Joakim Tjernlund
This didn't show up in the archives, so trying again. >From 7882df972ec827f0e7b7b622c01be2644e54d122 Mon Sep 17 00:00:00 2001 From: Joakim Tjernlund Date: Mon, 3 May 2010 20:30:32 +0200 Subject: [PATCH] RegisterWaitForSingleObject() fix special tmo == 0 case. At http://msdn.microsoft.com/en-us/

[PATCH] RegisterWaitForSingleObject() fix special tmo == 0 case.

2010-05-04 Thread Joakim Tjernlund
At http://msdn.microsoft.com/en-us/library/aa332406%28VS.71%29.aspx one can read: "If the timeOutInterval parameter is not zero (0) and the executeOnlyOnce parameter is false, the timer is reset every time the event is signaled or the time-out interval elapses." timeOutInterval == 0 makes the abov

Re: [2/5] rundll32: Fail if a rundll32 window cannot be created.

2010-05-04 Thread Andrew Nguyen
On 05/03/2010 10:19 AM, Alexandre Julliard wrote: Andrew Nguyen writes: --- programs/rundll32/rundll32.c | 16 +--- 1 files changed, 13 insertions(+), 3 deletions(-) This will prevent initializing the prefix without an X display. Why do you need this? I simply wrote thi

More benchmarks of 3d performance comparing windows and linux

2010-05-04 Thread Dan Kegel
http://kegel.com/wine/yagmarkdata/ now has data from 3dmark2000, 2001, and 06 running on a beefy i7 960 with an equally beefy Nvidia GTX 295 with either Windows 7 or Linux+Wine (all tests run at 1024x768). Here are the results of one run for each plucked at random (sorry, no breakdown of 3dmark06

Re: [PATCH 1/2] tools: Added a script to build BMPs from SVGs

2010-05-04 Thread Alexandre Julliard
Joel Holdsworth writes: > Signed-off-by: Joel Holdsworth > --- > Make.rules.in |5 +-- > tools/buildbitmap | 90 > + > 2 files changed, 92 insertions(+), 3 deletions(-) > create mode 100755 tools/buildbitmap This could go in the b

Re: Winebuild b0rken on Mac OS X?

2010-05-04 Thread eric lanz
FYI wine can be built again with the iphone sdk beta 3 that came out today. From: Charles Davis To: wine-devel Sent: Tue, April 20, 2010 3:21:56 PM Subject: Winebuild b0rken on Mac OS X? While building Wine (latest git) on Mac OS X, I noticed this: /usr/bin/

Re: [12/13]docs/wineusr: unix paths are supported

2010-05-04 Thread Alexandre Julliard
Austin English writes: >> diff --git a/en/wineusr-running.sgml b/en/wineusr-running.sgml >> index f36383f..106be37 100644 >> --- a/en/wineusr-running.sgml >> +++ b/en/wineusr-running.sgml >> @@ -90,8 +90,8 @@ Usage: wine PROGRAM [ARGUMENTS...]   Run the specified >> program >>         in the Pat

Re: [12/13]docs/wineusr: unix paths are supported

2010-05-04 Thread Austin English
2010/5/4 André Hentschel : > --- >  en/wineusr-running.sgml |    8 ++-- >  1 files changed, 6 insertions(+), 2 deletions(-) > > diff --git a/en/wineusr-running.sgml b/en/wineusr-running.sgml > index f36383f..106be37 100644 > --- a/en/wineusr-running.sgml > +++ b/en/wineusr-running.sgml > @@ -90

Re: gdi32: Fix underline and strikeout for clipped to the rectangle text

2010-05-04 Thread Alexandre Julliard
Ilya Shpigor writes: > There is bug with underline and strikeout font in ExtTextOutW. > > The text is clipped if the ETO_CLIPPED flag have been set and rectangle > smaller then needed for text. But underline and strikeout lines is drawed > same as when text fit in the rectangle. > > The problem

Re: What is the point of mincore() in reserve_area() in libs/wine/mmap.c?

2010-05-04 Thread Charles Davis
On 5/4/10 10:17 AM, Johann "Myrkraverk" Oskarsson wrote: > Hi all, > > In the Solaris/BSD implementation of reserve_area() in libs/wine/mmap.c there > is > > for (i = 0; i < size; i += pagesize) > if (mincore( (caddr_t)addr + i, pagesize, &vec ) != -1) break; > > &vec is nev

What is the point of mincore() in reserve_area() in libs/wine/mmap.c?

2010-05-04 Thread Johann "Myrkraverk" Oskarsson
Hi all, In the Solaris/BSD implementation of reserve_area() in libs/wine/mmap.c there is for (i = 0; i < size; i += pagesize) if (mincore( (caddr_t)addr + i, pagesize, &vec ) != -1) break; &vec is never used again in that function. What is the point of mincore() ? I'm looki

Valgrind's wine_cp_wcstombs warnings

2010-05-04 Thread Joerg-Cyril.Hoehle
Hi, Dan Kegel wrote: >did you try the --track-origins option? That looks like an exact fit, thank you. Well, this option is not present in Ubuntu Intrepid's Valgrind. In Ubuntu Lucid, the option is present but Valgrind does not complain about wine_cp_wcstombs there. I conclude it was likely a fa

Re: Valgrind's wine_cp_wcstombs warnings

2010-05-04 Thread Jordan Ayers
> Hi, > > running the MCI tests with Valgrind generates a lot of output like follows > > ==13170== Use of uninitialised value of size 4 > ==13170==at 0x4035369: wine_cp_wcstombs (wctomb.c:147) > ...[every line from 148 to 161] > ==13170== Use of uninitialised value of size 4 > ==13170==at 0

Re: [3/3] rundll32: Recognize entry points passed as ordinal numbers. (try 2)

2010-05-04 Thread Alexandre Julliard
Andrew Nguyen writes: > @@ -119,30 +119,43 @@ static FARPROC16 get_entry_point16( HINSTANCE16 inst, > LPCWSTR entry ) > static void *get_entry_point32( HMODULE module, LPCWSTR entry, BOOL *unicode > ) > { > void *ret; > -DWORD len = WideCharToMultiByte( CP_ACP, 0, entry, -1, NULL, 0,

A revision for common PageSetup dialog

2010-05-04 Thread Love Nystrom
File: dlls\comdlg32\printdlg.c Function: static void subclass_margin_edits(HWND hDlg) Hi WineDevs, I have a revision for the common page setup dialog for You. I'm not a Wine dev, but a participant in ReactOS, and we synchronize ComDlg32 with You regularly, so this revision _should_ go to You. I'

Re: wined3d: Fix some complaints in d3d9 texture test

2010-05-04 Thread Ričardas Barkauskas
On 05/04/2010 10:28 AM, Henri Verbeet wrote: 2010/5/4 Ričardas Barkauskas: Fixes some GL_INVALID_ENUM fixmes in d3d9 texture tests and bug 11167. Why are you setting GL_GENERATE_MIPMAP_SGIS? Sorry for spam. Reading bug now gives completely new meaning than in a middle of the night (and al

Re: wined3d: Fix some complaints in d3d9 texture test

2010-05-04 Thread Henri Verbeet
2010/5/4 Ričardas Barkauskas : > Fixes some GL_INVALID_ENUM fixmes in d3d9 texture tests and bug 11167. > Why are you setting GL_GENERATE_MIPMAP_SGIS?