Re: user32: ImmProcessKey is only called on WM_KEYDOWN and if the message is being removed

2013-03-27 Thread Dmitry Timoshkov
Aric Stewart wrote: > Worked out with testing on Japanese windows XP. Resolves issues with > keystrokes and accelerators in menus when the IME is active. You should really start adding the tests and base your patches on test results instead of some sort of speculation. -- Dmitry.

RE: Linker error when improving GetLargestConsoleWindowSize

2013-03-27 Thread Hugh McMaster
-Original Message- From: Eric Pouech [mailto:eric.pou...@orange.fr] Sent: Wednesday, 27 March 2013 8:54 AM To: wine-devel@winehq.org Subject: Re: Linker error when improving GetLargestConsoleWindowSize Ken Thomases wrote: >This won't be able to work. The linker error is telling you, effe

Re: [1/3] kernel32: Set GetLargestConsoleWindowSize based on screen resolution

2013-03-27 Thread Ken Thomases
On Mar 27, 2013, at 6:08 PM, Hugh McMaster wrote: > Ken Thomases wrote: > >>> This approach is untenable. Kernel32 can't be made to depend on X11. It >>> has to still work when X11 isn't available. Also, X11 is just one possible >>> graphics/windowing system that Wine can use, so it's not al

RE: [1/3] kernel32: Set GetLargestConsoleWindowSize based on screen resolution

2013-03-27 Thread Hugh McMaster
-Original Message- From: Ken Thomases [mailto:k...@codeweavers.com] Sent: Wednesday, 27 March 2013 11:25 PM To: Hugh McMaster Cc: Wine Developers Subject: Re: [1/3] kernel32: Set GetLargestConsoleWindowSize based on screen resolution On Mar 27, 2013, at 6:41 AM, Hugh McMaster wrote: >

Re: d3dx9 [patch 1/2, try 3]: Implement D3DXSHEvalSphericalLight

2013-03-27 Thread Alexandre Julliard
Nozomi Kodama writes: > From 3d331ffa908f69ca58686b4601effbb16d89d1da Mon Sep 17 00:00:00 2001 > From: "nozomi.kodama" > Date: Thu, 14 Mar 2013 18:34:48 -1000 > Subject: d3dx9: Implement D3DXSHEvalSphericalLight It fails on 64-bit: ../../../../wine/tools/runtest -q -P wine -M d3dx9_36.dll -T .

Re: tools/wine.inf: add HKLM\\System\\CurrentControlSet\\Services\\Eventlog\\Application registry key

2013-03-27 Thread Alexandre Julliard
Austin English writes: > Fixes http://bugs.winehq.org/show_bug.cgi?id=22026 It breaks the tests: ../../../tools/runtest -q -P wine -M advapi32.dll -T ../../.. -p advapi32_test.exe.so eventlog.c && touch eventlog.ok eventlog.c:524: Tests skipped: We don't have a backup eventlog to work with eve

Re: Wiki is down

2013-03-27 Thread Dimi Paun
Thanks for the bug report, it should be fixed now. Dimi. On Wed, Mar 27, 2013 at 12:57 PM, Francois Gouget wrote: > On Mon, 25 Mar 2013, Dimi Paun wrote: > > > Should be up now, the RAID controller on the box died. > > We'll be moving it to a better box soon, stay tuned. > > Do you know what's

Re: Wiki is down

2013-03-27 Thread Francois Gouget
On Mon, 25 Mar 2013, Dimi Paun wrote: > Should be up now, the RAID controller on the box died. > We'll be moving it to a better box soon, stay tuned. Do you know what's up with this message? Status of sending notification mails: [en] fracting: Connection to mailserver 'mail.lattica.com' fail

Re: [1/3] kernel32: Set GetLargestConsoleWindowSize based on screen resolution

2013-03-27 Thread Ken Thomases
On Mar 27, 2013, at 6:41 AM, Hugh McMaster wrote: > This patch modifies the dlls/kernel32 Makefile.in to (1) compile a new source > file (screensize.c) (patch 3/3) and (2) add -lX11 to the ExtraDllFlags line. This approach is untenable. Kernel32 can't be made to depend on X11. It has to still

Re: advapi32: Do not terminate a regular program if it calls StartServiceCtrlDispatcher.

2013-03-27 Thread Alexandre Julliard
Alexander Morozov writes: > @@ -592,7 +586,26 @@ BOOL WINAPI StartServiceCtrlDispatcherA( const > SERVICE_TABLE_ENTRYA *servent ) > services[i] = info; > } > > -service_run_main_thread(); > +disp = HeapAlloc( GetProcessHeap(), 0, sizeof(*disp) ); > + > +if (!(disp->ma

Re: [PATCH 1/3] msvcr90: Forward some functions directly to ntdll

2013-03-27 Thread Piotr Caban
On 03/27/13 12:13, Alexandre Julliard wrote: Piotr Caban writes: These functions are currently forwarded from msvcr90 to msvcrt which forwards to ntdll. Naver LINE is crashing while trying to call them. Does it work if you remove the forward in msvcrt instead? That would be a better fix. Y

Re: [PATCH 1/3] msvcr90: Forward some functions directly to ntdll

2013-03-27 Thread Alexandre Julliard
Piotr Caban writes: > These functions are currently forwarded from msvcr90 to msvcrt which > forwards to ntdll. Naver LINE is crashing while trying to call them. Does it work if you remove the forward in msvcrt instead? That would be a better fix. -- Alexandre Julliard julli...@winehq.org

Re: urlmon: Fix handling of mailto URIs in CoInternetCombineUrlEx.

2013-03-27 Thread Jacek Caban
Hi Hans, On 03/27/13 10:43, Hans Leidekker wrote: > --- > dlls/urlmon/tests/uri.c | 63 > +++ > dlls/urlmon/uri.c | 15 --- > 2 files changed, 69 insertions(+), 9 deletions(-) > > diff --git a/dlls/urlmon/tests/uri.c b/dlls/urlmon/tes