Re: [PATCH 2/2] fonts: .gitignore += *.fnt (autogenerated)

2009-08-25 Thread Francois Gouget
On Tue, 25 Aug 2009, Paul Chitescu wrote: [...] > > +courier-1250-96-13.fnt > [...] > > +system-950-96-16.fnt > > Git knows shell glob patterns so why not just a line: > > *.fnt Because that's less accurate. In particular, if we remove a font, the corresponding .fnt file would still be ignored.

Re: tools/wine.inf: fix New Zealand DST

2009-08-25 Thread Dmitry Timoshkov
"Austin English" wrote: Two points: 1. These data are auto generated. Where from? The program is attached to http://www.winehq.org/pipermail/wine-patches/2008-March/052474.html 2. Existing data for New Zealand Standard Time,"TZI" do match what XP SP3 has, a new one doesn't. http://www.w

Re: tools/wine.inf: fix New Zealand DST

2009-08-25 Thread Austin English
On Tue, Aug 25, 2009 at 10:07 PM, Dmitry Timoshkov wrote: > "Austin English" wrote: > >> Reported in wine-users. > > Two points: > 1. These data are auto generated. Where from? > 2. Existing data for New Zealand Standard Time,"TZI" do match what > XP SP3 has, a new one doesn't. http://www.wineh

Re: tools/wine.inf: fix New Zealand DST

2009-08-25 Thread Dmitry Timoshkov
"Austin English" wrote: Reported in wine-users. Two points: 1. These data are auto generated. 2. Existing data for New Zealand Standard Time,"TZI" do match what XP SP3 has, a new one doesn't. -- Dmitry.

Re: [RFC] Adding an OpenAL DLL thunk

2009-08-25 Thread Chris Robinson
On Tuesday 25 August 2009 6:40:30 am Stefan Dösinger wrote: > I'll give it a try with my games. The old thunk from a while ago already > worked very will with those games. > > OpenAL seems to have an extension system like opengl. If there is a > function that returns an extension string we'll want

Re: about video memory detection in wine

2009-08-25 Thread Roderick Colenbrander
I'm sure what will happen to the GL_ATI_meminfo but perhaps it makes sense to unify it with WGL_AMD_gpu_association ? Roderick

Re: [1/5] user32:edit Use a dialog mode after receiving WM_GETDLGCODE message.

2009-08-25 Thread Juan Lang
Hi Sergey, one very minor comment on this patch: +len = SendMessage(hwEdit, WM_GETTEXTLENGTH, 0, 0); +ok(13 == len, "expected 11, got %d\n", len); Nit: you mean "expected 13", not 11. The same is true for every instance where 13 is the expected length. --Juan

Re: [PATCH 2/2] fonts: .gitignore += *.fnt (autogenerated)

2009-08-25 Thread Paul Chitescu
On Tuesday 25 August 2009 19:27:23 Kirill Smelkov wrote: > Signed-off-by: Kirill Smelkov > --- > fonts/.gitignore | 58 > ++ 1 files changed, 58 > insertions(+), 0 deletions(-) > > diff --git a/fonts/.gitignore b/fonts/.gitignore > index a857f0

Re: [RFC] Adding an OpenAL DLL thunk

2009-08-25 Thread Stefan Dösinger
I'll give it a try with my games. The old thunk from a while ago already worked very will with those games. OpenAL seems to have an extension system like opengl. If there is a function that returns an extension string we'll want to remove any extension our thunk doesn't know about. However, I c

Re: shdocvw.inf: add default registry key HKCU, "Software\Microsoft\Internet Explorer\Settings

2009-08-25 Thread Alexandre Julliard
"Louis. Lenders" writes: > @@ -142,6 +142,7 @@ > HKLM,"Software\Microsoft\Windows\CurrentVersion\URL\Prefixes","www",,"http://"; > [Settings.Reg] > HKCU,"Software\Microsoft\Internet Explorer\Main","Start > Page",2,"http://www.winehq.org"; > HKCU,"Software\Microsoft\Internet Explorer\Main","S

Re: mapi32/tests: Skip tests if no default email client is installed

2009-08-25 Thread Eric Pouech
+static BOOL HaveDefaultMailClient() this should be +static BOOL HaveDefaultMailClient(void) A+ -- Eric Pouech

winemp3.acm: link to system libmpg123.so

2009-08-25 Thread Robert Förster
im getting undefined references to mpg123_feedseek. im on amd64, building a 32 bit wine, so of course i have a 32 bit lib of mpg123 around, which however seems to export mpg123_feedseek_64 instead. could that be covered too please? (i have reports that this is happening on plain x86 boxes too.)

Re: kernel32: set sLanguage to LOCALE_SABBREVLANGUAGE to match Windows behavior

2009-08-25 Thread Alexandre Julliard
Jeff Zaroyko writes: > What is incorrect is that GetLocaleInfo is reading the override from > the registry which it should not do hence the special casing where the > value of sLanguage as a profile or registry entry is not the > corresponding value for LOCALE_SLANGUAGE, but the corresponding val

Re: kernel32: set sLanguage to LOCALE_SABBREVLANGUAGE to match Windows behavior

2009-08-25 Thread Jeff Zaroyko
On Mon, Aug 24, 2009 at 9:22 PM, Alexandre Julliard wrote: > Jeff Zaroyko writes: > >> This fixes bug 15181, test included - passes on Windows 95, 2003, XP, >> 2008, Vista and Windows 7 beta that I've tested. >> >> From 52ff2d29ba9fbffbe8da46a7523338e8b946bbcd Mon Sep 17 00:00:00 2001 >> From: Jef