Re: winmm: For MCI parsing, use 64bit compatible structures.

2010-03-29 Thread Eric Pouech
joerg-cyril.hoe...@t-systems.com a écrit : Hi, I believe this patch can stand on its own, regardless of whether we discover an MCI_INTEGER64 type or similar later (cf. bug 22146). It is not all about Wine64. I have two others in my queue: - One deals with HWND and the like in the MCI_XYZ_PARM

Re: [PATCH 1/5] winmm: Improve MCI's Sysinfo command.

2010-03-29 Thread Eric Pouech
joerg-cyril.hoe...@t-systems.com a écrit : Hi, this is the first of a series of patches I started writing last year. It suffered from the typical "some patches are 100% complete but follow others that are only 80%" syndrome. Now I filled in the missing parts. The fifth implements more tests to

Re: on most hated "OS" in the history of computing

2010-03-29 Thread David Gerard
On 29 March 2010 10:37, Damjan Jovanovic wrote: > Why should Debian politics be a barrier to its adoption by Wine? It's not that, it's what the actual licence text says: http://opensource.org./licenses/sybase.php Read what you give away just by using the software ... - d.

Re: kernel32: Fix moving a file to the same one

2010-03-29 Thread Alexandre Julliard
André Hentschel writes: > diff --git a/dlls/kernel32/path.c b/dlls/kernel32/path.c > index 2b69e8c..d34b3a7 100644 > --- a/dlls/kernel32/path.c > +++ b/dlls/kernel32/path.c > @@ -1031,6 +1031,9 @@ BOOL WINAPI MoveFileWithProgressW( LPCWSTR source, > LPCWSTR dest, > if (flag & MOVEFILE_WRITE

Re: Reorganizing msvcrt related dlls implementation

2010-03-29 Thread Alexandre Julliard
Piotr Caban writes: > Hi, > > Recently I was working on some msvcrt/msvcr90 functions. > > I found few problems related to how the implementation is organized: > - Some of the functions are invoking invalid_parameter, msvcrt is not > allowing to change it, msvcr90 exports _set_invalid_parameter_

Reorganizing msvcrt related dlls implementation

2010-03-29 Thread Piotr Caban
Hi, Recently I was working on some msvcrt/msvcr90 functions. I found few problems related to how the implementation is organized: - Some of the functions are invoking invalid_parameter, msvcrt is not allowing to change it, msvcr90 exports _set_invalid_parameter_handler. - create_locale (not a

Re: [TRY 4] [PATCH] user32: horizontal and vertical scrolling of selection in edit control

2010-03-29 Thread Dmitry Timoshkov
Henry Kroll III wrote: > +if (es->region_posx < 0)EDIT_EM_LineScroll(es,-10,0); > +else if (es->region_posx > 0)EDIT_EM_LineScroll(es,10,0); > +if (es->region_posy < 0)EDIT_EM_LineScroll(es,0,-1); > +else if (es->region_posy > 0)EDIT_EM_LineScroll(es,0,1); Where do -/+10,-/+1 com

Re: on most hated "OS" in the history of computing

2010-03-29 Thread Damjan Jovanovic
On Mon, Mar 29, 2010 at 11:14 AM, Saulius Krasuckas wrote: > Hello > > * On Sun, 28 Mar 2010, Damjan Jovanovic wrote: >> >> Out of interest, why were you visiting openwatcom.org? Are you also >> looking into Win16 tests for Wine? > > Kind of.  I was looking into licensing problems preventing its i

Re: on most hated "OS" in the history of computing

2010-03-29 Thread David Gerard
On 29 March 2010 10:14, Saulius Krasuckas wrote: > * On Sun, 28 Mar 2010, Damjan Jovanovic wrote: >> Out of interest, why were you visiting openwatcom.org? Are you also >> looking into Win16 tests for Wine? > Kind of.  I was looking into licensing problems preventing its inclusion > in Debian.  

Re: on most hated "OS" in the history of computing

2010-03-29 Thread Saulius Krasuckas
Hello * On Sun, 28 Mar 2010, Damjan Jovanovic wrote: > > Out of interest, why were you visiting openwatcom.org? Are you also > looking into Win16 tests for Wine? Kind of. I was looking into licensing problems preventing its inclusion in Debian. Seems like I should try starting negotiation be

Re: [PATCH 5/8] msvcr90: Added _get/set_invalid_parameter_handler implementation (try4)

2010-03-29 Thread Paul Vriens
On 03/24/2010 10:39 PM, Piotr Caban wrote: +p_invalid_parameter = (void *)GetProcAddress( hMsvcrt,"_invalid_parameter"); +if(p_invalid_parameter) +*p_invalid_parameter = test_invalid_parameter_handler; Hi Piotr, That last assignment makes the tests crash on Vista+. Could you