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
Austin English writes:
> @@ -2202,6 +2202,19 @@ BOOL WINAPI IsValidLocale( LCID lcid, DWORD flags )
> (LPCWSTR)LOCALE_ILANGUAGE, LANGIDFROMLCID(lcid))
> != 0;
> }
>
> +/**
> + *
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
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.
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
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
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)
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
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