Re: wine menus

2007-06-22 Thread Damjan Jovanovic
On 6/22/07, Steven Edwards <[EMAIL PROTECTED]> wrote: On 6/22/07, Frank Richter <[EMAIL PROTECTED]> wrote: > Another idea: let wine's explorer monitor the start menu directory and > let it update the fd.o menu as soon as it detects a change. This way > changes to the start menu folder are instant

Slackware 11: After Wine update applications crash if WINEDEBUG not set

2007-06-22 Thread Victor
Hello! I didn't get an answer for this in wine-user, so I've decided to ask this question here. After upgrading wine (from 0.9.37 to 0.9.38 or from 0.9.38 to 0.9.39 - I'm not sure) many graphical applications started crashing if WINEDEBUG+=all or WINEDEBUG+=relay not set. Among those applicatio

Wine on SkyOS

2007-06-22 Thread Tom Wickline
Hello All, Looks as if SkyOS will soon support Wine! Internals - Many kernel updates like LDT support (required by Wine), updated signal handling, pthread support, and overall additional POSIX compatibility enhancements. http://www.skyos.org/?q=node/605 Tom

Re: Bugzilla mails and people replying to [EMAIL PROTECTED]

2007-06-22 Thread Alexander Nicolaysen Sørnes
Lørdag 23 juni 2007 01:13, skrev Tom Spear: > Just curious how trivial it would be to add a note to the bugzilla > mail template saying to post replies to comments in the bug? > > Something like the following: > > > > A bug you are watching, Bug #(bug number), has a new comment. To > reply to this

Bugzilla mails and people replying to [EMAIL PROTECTED]

2007-06-22 Thread Tom Spear
Just curious how trivial it would be to add a note to the bugzilla mail template saying to post replies to comments in the bug? Something like the following: A bug you are watching, Bug #(bug number), has a new comment. To reply to this comment, click (bug link). Then the rest of the email a

Re: RegOpenKeyExW() Question

2007-06-22 Thread Tom Spear
On 6/22/07, Andrew Talbot <[EMAIL PROTECTED]> wrote: Hi, I want to patch msi:action.c:ITERATE_WriteEnvironmentString() so that it only calls RegCloseKey(env), in the cleanup, if "env" has been initialized (to fix Coverity report CID-562). I can bypass the call to RegCloseKey() for any early exit

Re: gdiplus: graphics tests [try2]

2007-06-22 Thread Misha Koshelev
On Fri, 2007-06-22 at 10:44 +0100, Huw Davies wrote: > On Fri, Jun 22, 2007 at 12:10:15AM -0500, Misha Koshelev wrote: > > > Am Freitag, 15. Juni 2007 22:02 schrieb Jan Zerebecki: > > > > On Fri, Jun 15, 2007 at 01:36:09PM +0200, Alexandre Julliard wrote: > > > > > "Evan Stade" writes: > > > > > >

RegOpenKeyExW() Question

2007-06-22 Thread Andrew Talbot
Hi, I want to patch msi:action.c:ITERATE_WriteEnvironmentString() so that it only calls RegCloseKey(env), in the cleanup, if "env" has been initialized (to fix Coverity report CID-562). I can bypass the call to RegCloseKey() for any early exit that occurs prior to calling RegOpenKeyExW(), and I ca

Re: winealsa.drv: Fix missing unlock on the error path. Found by Smatch.

2007-06-22 Thread Maarten Lankhorst
That fix is correct, This->pcm is only ever changed inside the critical section Thanks, Maarten 2007/6/22, Michael Stefaniuc <[EMAIL PROTECTED]>: > Maarten, > > is this the right fix or can the lock be moved below the > if (!This->pcm) > check? > > bye > michael > --- > dlls/wineals

Re: wine menus

2007-06-22 Thread Steven Edwards
On 6/22/07, Frank Richter <[EMAIL PROTECTED]> wrote: Another idea: let wine's explorer monitor the start menu directory and let it update the fd.o menu as soon as it detects a change. This way changes to the start menu folder are instant, at least while explorer runs. Alexandre: do you have any

Re: Failing assertion in dsound test, please confirm

2007-06-22 Thread Maarten Lankhorst
Alex Villací­s Lasso schreef: > I am experiencing a failing assertion in a dsound test. Could you > please confirm if it is just me (and then it would be a configuration > issue), or if anybody else is experiencing failing assertions: Confirmed, I' ll take a closer look at it. Maarten

Failing assertion in dsound test, please confirm

2007-06-22 Thread Alex Villací­s Lasso
I am experiencing a failing assertion in a dsound test. Could you please confirm if it is just me (and then it would be a configuration issue), or if anybody else is experiencing failing assertions: [EMAIL PROTECTED] tests]$ WINETEST_INTERACTIVE=1 wine dsound_test.exe.so dsound ALSA lib conf.c

Re: wine menus

2007-06-22 Thread Frank Richter
On 22.06.2007 08:21, Damjan Jovanovic wrote: > Is it possible to add a new utility, or patch an existing utility like > wineboot, to synchronize between wine's .lnk files in the windows > directory and the fd.o menus, instead of using > winemenubuilder/wineshelllink? Would a patch that does that be

Re: wine menus

2007-06-22 Thread Steven Edwards
On 6/22/07, Damjan Jovanovic <[EMAIL PROTECTED]> wrote: Is it possible to add a new utility, or patch an existing utility like wineboot, to synchronize between wine's .lnk files in the windows directory and the fd.o menus, instead of using winemenubuilder/wineshelllink? Would a patch that does th

Re: How to make your machine crash when running Wine

2007-06-22 Thread gslink
Most of the people here are probably smarter than to fall into this trap but I recently had several customers who did. Most of the time openGL just refuses to run but a couple of months ago RH did put out an update to some of the X code that did cause the machine to crash with Wine if you didn

Re: wine menus

2007-06-22 Thread Alexander Nicolaysen Sørnes
Fredag 22 juni 2007 08:43, skrev Tom Spear: > I actually did some testing behind .lnk functionality (unscientific > testing, that is) with wine a few months ago. Xorg actually fully > supports Windows' .lnk files with 2 minor annoyances.. > > The .lnk files could theoretically be used as the links

Re: dpnhpast: Add stub for DirectPlayNATHelpCreate

2007-06-22 Thread Detlef Riekenberg
On Fr, 2007-06-22 at 04:39 +0200, Alexander Nicolaysen Sørnes wrote: > +HRESULT WINAPI DirectPlayNATHelpCreate(const LPGUID pIId, void ** > ppvInterface) > { > - /* @stub in .spec */ > +FIXME("stub"); > +return E_FAIL; > } > -#endif The FIXME is missing the newline and it would be

Re: [3/7] gdiplus: GdipReAlloc

2007-06-22 Thread Alexandre Julliard
"Evan Stade" <[EMAIL PROTECTED]> writes: > This is only declared privately because it is not a function provided > by the dll. It follows the exported-function naming scheme however, > because it's a counterpart to GdipFree and GdipAlloc. Please don't do that, it's confusing. If there's no GdipR

Re: [1/2] oleaut32: add PNG loading [try2]

2007-06-22 Thread Alexandre Julliard
"Dan Kegel" <[EMAIL PROTECTED]> writes: > So perhaps we could just change configure.ac to check > PNG_LIBPNG_VER_MAJOR and make sure it's exactly 1, > and check PNG_LIBPNG_VER_MINOR and make sure it's 2 or greater. > That would let us avoid the old broken libpng's, wouldn't it? No, that doesn

Re: How to make your machine crash when running Wine

2007-06-22 Thread Ben Hodgetts (Enverex)
That's nothing to do with Wine nor does it make the "machine" crash. The nVidia driver works enough to run X and 2D but X closes itself if you do anything related to OpenGL (i.e. it'll happen even if you try and run glxinfo). I've never had it happen from an X update though, just minor kernel u

Re: How to make your machine crash when running Wine

2007-06-22 Thread Michael Stefaniuc
gslink wrote: If you are using the Nvidia drivers posted on the Nvidia web site then you MUST reinstall these drivers whenever you update ANY of the X-server software. If you replace the kernel you will be forced to reinstall the drivers but just replacing the X-server or the open GL code does

Re: gdiplus: graphics tests [try2]

2007-06-22 Thread Huw Davies
On Fri, Jun 22, 2007 at 12:10:15AM -0500, Misha Koshelev wrote: > > Am Freitag, 15. Juni 2007 22:02 schrieb Jan Zerebecki: > > > On Fri, Jun 15, 2007 at 01:36:09PM +0200, Alexandre Julliard wrote: > > > > "Evan Stade" writes: > > > > > +static const INT drawline_bmp1[192] = > > > > > +{0x,