Re: Wine still busted?

2008-02-29 Thread Ben Hodgetts (Enverex)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dan Kegel wrote: > Even with Alexandre's most recent fix, I'm seeing hangs > on Photoshop CS2 installer, iTunes installer, and Word Perfect Office > X3 installer, > and Susan is seeing hangs on Dragon, all with the suspicious line > > $ err:ntdll:Rtlp

Wine still busted?

2008-02-29 Thread Dan Kegel
Even with Alexandre's most recent fix, I'm seeing hangs on Photoshop CS2 installer, iTunes installer, and Word Perfect Office X3 installer, and Susan is seeing hangs on Dragon, all with the suspicious line $ err:ntdll:RtlpWaitForCriticalSection section 0x7bc8cf80 "rtl.c: peb_lock" wait timed out i

Re: wine.inf: Create fake dll entry for dosx.exe

2008-02-29 Thread Steven Edwards
On Fri, Feb 29, 2008 at 2:16 PM, Justin Chevrier <[EMAIL PROTECTED]> wrote: > Anything wrong with this one liner? I think you should create a stub version of dosx in wine/programs as well. -- Steven Edwards "There is one thing stronger than all the armies in the world, and that is an idea whos

Re: Conformance tests for LoadStringW and LoadStringA

2008-02-29 Thread Christopher
[EMAIL PROTECTED] wrote: > Message: 3 > Date: Fri, 29 Feb 2008 12:50:53 +0100 > From: Alexandre Julliard <[EMAIL PROTECTED]> > Subject: Re: Conformance tests for LoadStringW and LoadStringA > To: Christopher <[EMAIL PROTECTED]> > Cc: wine-devel@winehq.org > Message-ID: <[EMAIL PROTECTED]> > Content

Re: kernel32: Forward fiber local storage APIs to thread local storage equivalents.

2008-02-29 Thread Paul Chitescu
Actually a lot of programs fail to start since the addition of these stubs. In particular anything that uses MSVCRT80. This is a major regression. Most applications seem to live a happy life without fiber local storage - is there one that would benefit from it? On Fri, 29 Feb 2008, Hans Leide

Re: wine.inf: Create fake dll entry for dosx.exe

2008-02-29 Thread Justin Chevrier
> Changelog: > > Create a fake dll entry for dosx.exe Anything wrong with this one liner? Justin Chevrier

Re: kernel32 & winelib: Don't test string size in CompareStringW for null terminated strings

2008-02-29 Thread James Hawkins
On Fri, Feb 29, 2008 at 11:06 AM, Robert Shearman <[EMAIL PROTECTED]> wrote: > Adam Strzelecki wrote: > > During playing with installing Visual Studio 2005 with WINE I found > > out that WINE's MSI is spending lot of time inside lstrcmpW. With Mac > > OS X process sampler I checked that actually

Re: msi: ACTION_RegisterProduct store all InstallProperties

2008-02-29 Thread James Hawkins
On Fri, Feb 29, 2008 at 9:13 AM, Adam Strzelecki <[EMAIL PROTECTED]> wrote: > Hi, > > WINE is writing properties such as Language or VersionMajor only to > Uninstall key in ACTION_RegisterProduct, while MSI_GetProductInfo is > trying to read those from InstallProperties key. > > So this patch d

Re: kernel32: Fix for WritePrivateProfileString Sharing Problem [2/2]

2008-02-29 Thread Erich Hoover
On Fri, Feb 29, 2008 at 1:18 AM, James Hawkins <[EMAIL PROTECTED]> wrote: > > On Fri, Feb 29, 2008 at 1:17 AM, Erich Hoover <[EMAIL PROTECTED]> wrote: > > > > On Thu, Feb 28, 2008 at 11:44 PM, James Hawkins <[EMAIL PROTECTED]> wrote: > > > > > > On Fri, Feb 29, 2008 at 12:29 AM, Erich Hoover

Re: kernel32 & winelib: Don't test string size in CompareStringW for null terminated strings

2008-02-29 Thread Robert Shearman
Adam Strzelecki wrote: > During playing with installing Visual Studio 2005 with WINE I found > out that WINE's MSI is spending lot of time inside lstrcmpW. With Mac > OS X process sampler I checked that actually 60-70% of CompareStringW > is wine_compare_string, rest is rest of function body, wh

Re: kernel32 & winex11: WaitForMultipleObjectsEx should ignore NULL handles

2008-02-29 Thread Robert Shearman
Adam Strzelecki wrote: > Hi, > > In MSI dialog.c: msi_dialog_check_messages function it often happens > that is sends: > MsgWaitForMultipleObjects( 1, &handle, 0, INFINITE, QS_ALLINPUT ); > Where handle = NULL. I'm not sure if it is correct behavior. But > tracing it down I found out that kernel3

Visual Studio 2005 installation finally works with WINE

2008-02-29 Thread Adam Strzelecki
Hi, Hmm.. I think my last mail didn't manage to get into the list because of too big image attachements, sorry. If it does, I'm sorry for dupes. I just want to mention that I've managed to install Visual Studio 2005 completely with WINE. 1) installed "vcrun6" (with winetricks) 2) applied 1 p

Re: New winetricks 20080226: adds dotnet11 verb

2008-02-29 Thread bill lam
Lei Zhang wrote: > Can you file a bug on bugzilla and provide a sample image / test code > to demonstrate this problem? > Done. Test code is as follows, beware of line wrap. NB. tested on J602 beta / wine 0.9.56 NB. script to demostrate bug in GdipGetImageWidth GdipGetImageHeight NB. ==

Re: New winetricks 20080226: adds dotnet11 verb

2008-02-29 Thread James McKenzie
bill lam wrote: > If the user beware this possibility and write a more secure code, > GdipBitmapLockBits from wine's gdiplus will work. > > However this is another bug in wine gdiplus in that > value return from GdipGetImageWidth ( and GdipGetImageHeight ?) will often be > 1 > pixel less than ac

Re: Conformance tests for LoadStringW and LoadStringA

2008-02-29 Thread Alexandre Julliard
Christopher <[EMAIL PROTECTED]> writes: > +ok(!memcmp(copiedstring, returnedstring, (length2 + > 1)*sizeof(WCHAR)), > +"LoadStringW returned a string that does not match the string > pointed to by the pointer it returned. \ > + returnedstring = %ls, copiedstring =

Re: New winetricks 20080226: adds dotnet11 verb

2008-02-29 Thread Lei Zhang
On Fri, Feb 29, 2008 at 1:51 AM, bill lam <[EMAIL PROTECTED]> wrote: > However this is another bug in wine gdiplus in that > value return from GdipGetImageWidth ( and GdipGetImageHeight ?) will often > be 1 > pixel less than actual value, eg a jpeg of size 800x600 will be reported as > 799x600

Re: gdi32: Move 16-bit printing functions to printdrv16.c.

2008-02-29 Thread Alexandre Julliard
Robert Shearman <[EMAIL PROTECTED]> writes: > --- > dlls/gdi32/Makefile.in |1 + > dlls/gdi32/printdrv.c | 752 > +- > dlls/gdi32/printdrv16.c | 779 > +++ > 3 files changed, 783 insertions(+), 749 de

Re: dxdiagn: Fix the variable that the result of GetFileVersionInfoW is assigned to in DXDiag_AddFileDescContainer.

2008-02-29 Thread Robert Shearman
Paul Vriens wrote: > Robert Shearman wrote: >> --- >> dlls/dxdiagn/provider.c |2 +- >> 1 files changed, 1 insertions(+), 1 deletions(-) >> >> >> >> >> > > Is there a need to have it assigned, as the next line overwrites

Re: dxdiagn: Fix the variable that the result of GetFileVersionInfoW is assigned to in DXDiag_AddFileDescContainer.

2008-02-29 Thread Paul Vriens
Robert Shearman wrote: > --- > dlls/dxdiagn/provider.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > > > > Hi Rob, Is there a need to have it assigned, as the next line overwrites boolret again? --

Re: [PATCH] shlwapi: Handle PathCanonicalize with too long paths

2008-02-29 Thread Robert Shearman
Marcus Meissner wrote: > lpszPath) >{ > WCHAR szPath[MAX_PATH]; > WCHAR szBuff[MAX_PATH]; > -MultiByteToWideChar(CP_ACP,0,lpszPath,-1,szPath,MAX_PATH); > +DWORD le = GetLastError(); > +int ret = MultiByteToWideChar(CP_ACP,0,lpszPath,-1,szPath,MAX_PATH); > + > +if (!ret

Re: New winetricks 20080226: adds dotnet11 verb

2008-02-29 Thread bill lam
James Hawkins wrote: > On Thu, Feb 28, 2008 at 10:07 PM, bill lam <[EMAIL PROTECTED]> wrote: >> I patched platimg to work with negative stride and now it works with wine >> built-in gdiplus. >> >> FYI, native gdiplus gives a top-down bitmap but wine's gdiplus gives a >> bottom-up. It is not a bu

Re: kernel32: Fix for WritePrivateProfileString Sharing Problem [2/2]

2008-02-29 Thread James Hawkins
On Fri, Feb 29, 2008 at 1:17 AM, Erich Hoover <[EMAIL PROTECTED]> wrote: > > On Thu, Feb 28, 2008 at 11:44 PM, James Hawkins <[EMAIL PROTECTED]> wrote: > > > > On Fri, Feb 29, 2008 at 12:29 AM, Erich Hoover <[EMAIL PROTECTED]> wrote: > > > Patch Originally From: > > >Louis Lenders > > >