Re: [PATCH 1/9] hhctrl.ocx: Implement HH_CLOSE_ALL (resend).

2012-07-10 Thread Erich E. Hoover
On Tue, Jul 10, 2012 at 3:52 AM, Jacek Caban wrote: > ... > From what I see in patch 5, you also call list_add_tail outside constructor. > ... I don't see much of a choice, you need to be able to "set" wintype data for windows that don't exist yet. I've attached a proposed update including the

Re: kernel32: implement IsValidLocaleName (as a wrapper around IsValidLocale) (2/2) (try 2)

2012-07-10 Thread Alexandre Julliard
Austin English writes: > @@ -2202,6 +2202,19 @@ BOOL WINAPI IsValidLocale( LCID lcid, DWORD flags ) > (LPCWSTR)LOCALE_ILANGUAGE, LANGIDFROMLCID(lcid)) > != 0; > } > > +/** > + *

Re: Re-enable editing on the forum?

2012-07-10 Thread Jeremy Newman
On 07/09/2012 10:47 AM, Rosanne DiMesio wrote: Now, another housekeeping matter: http://forum.winehq.org currently lists "Wine Users" under "WineHQ Mailing Lists" and says "This forum is linked to the wine-users mailing list", and http://www.winehq.org/site/forums still says "The mailing lists

Re: [1/2] gdiplus: GdipBitmapLockBits should treat flags == 0 as ImageLockModeRead.

2012-07-10 Thread Dmitry Timoshkov
Vincent Povirk wrote: > I think you might want (!(flags & > (ImageLockModeRead|ImageLockModeWrite))), in case someone passes > ImageLockModeUserInputBuf This needs an additional test of course, and that should be a separate patch. -- Dmitry.

Re: [1/2] gdiplus: GdipBitmapLockBits should treat flags == 0 as ImageLockModeRead.

2012-07-10 Thread Vincent Povirk
I think you might want (!(flags & (ImageLockModeRead|ImageLockModeWrite))), in case someone passes ImageLockModeUserInputBuf On Tue, Jul 10, 2012 at 7:45 AM, Dmitry Timoshkov wrote: > --- > dlls/gdiplus/image.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/dlls/gdiplus/image.c b/dll

Re: kernel32: implement IsValidLocaleName (as a wrapper around IsValidLocale)

2012-07-10 Thread Austin English
On Tue, Jul 10, 2012 at 7:39 AM, Dmitry Timoshkov wrote: > Austin English wrote: > >> +BOOL WINAPI IsValidLocaleName( LPCWSTR locale ) >> +{ >> +LCID lcid; >> +BOOL ret; >> + >> +TRACE( "locale: %s\n", debugstr_w(locale) ); >> +lcid = LocaleNameToLCID( locale, 0 ); >> +ret = I

Re: kernel32: implement IsValidLocaleName (as a wrapper around IsValidLocale)

2012-07-10 Thread Dmitry Timoshkov
Austin English wrote: > +BOOL WINAPI IsValidLocaleName( LPCWSTR locale ) > +{ > +LCID lcid; > +BOOL ret; > + > +TRACE( "locale: %s\n", debugstr_w(locale) ); > +lcid = LocaleNameToLCID( locale, 0 ); > +ret = IsValidLocale( lcid, 0 ); > +return ret; > +} Avoiding (useless)

Re: some patches to read files faster (especially for baldur's gate and infinity engine games)

2012-07-10 Thread Austin English
On Mon, Jul 9, 2012 at 2:06 PM, Emmanuel Anne wrote: > Hello, I installed baldur's gate lately and noticed it was still slow in > wine, especially if I install a few mods. > See the description of the bug here : > http://bugs.winehq.org/show_bug.cgi?id=17956 > > So after reading the page about cas

Re: [PATCH 1/9] hhctrl.ocx: Implement HH_CLOSE_ALL (resend).

2012-07-10 Thread Jacek Caban
On 07/09/12 17:49, Erich E. Hoover wrote: > On Mon, Jul 9, 2012 at 3:31 AM, Jacek Caban wrote: >> ... >> How is it supposed to work? AFAICS you're destroying windows, removing >> info object from the list and forget about it. If your intention is to >> destroy these objects, then ReleaseHelpViewer