Re: [PATCH 1/3] kernel32/tests: Add test for 'all processors' flag on Vista and newer (try 2).

2010-02-19 Thread Henri Verbeet
On 19 February 2010 05:22, Erich Hoover ehoo...@mines.edu wrote: Real Name:   Erich Hoover Description:   The attached patch adds a test for SetThreadAffinityMask(thread,-1), which succeeds on Windows Vista and newer.  This version uses broken() rather than specifically testing versions.  

Re: [PATCH 3/3] kernel32/tests: Test for 'all processors' now valid (try 2).

2010-02-19 Thread Erich Hoover
On Thu, Feb 18, 2010 at 10:08 PM, Charles Davis cda...@mymail.mines.edu wrote: Erich Hoover wrote: Real Name:    Erich Hoover Description:    Patch 2 added support for the all processors flag, so this is no-longer a todo.  This version is against the revised patch 1, please note that patch

Re: [PATCH] shell32: Allow copy operation to overwrite an existing write protected file + tests

2010-02-19 Thread Nikolay Sivov
On 2/19/2010 17:34, Christian Costa wrote: --- dlls/shell32/shlfileop.c | 10 +- dlls/shell32/tests/shlfileop.c | 20 2 files changed, 29 insertions(+), 1 deletions(-) Correct me if I'm wrong, but isn't SetFileAttributes dependent on user security

Re: [PATCH 3/3] kernel32/tests: Test for 'all processors' now valid (try 2).

2010-02-19 Thread Henri Verbeet
On 19 February 2010 15:30, Erich Hoover ehoo...@mines.edu wrote: What is the appropriate log notation for this? Is it ntdll,kernel32/tests ?  Thanks. You'd just use the subject from patch 2, ntdll: However, I think a more logical way to do this would be to first send a patch for ntdll +

Re: [PATCH] shell32: Allow copy operation to overwrite an existing write protected file + tests

2010-02-19 Thread Christian Costa
Nikolay Sivov a écrit : On 2/19/2010 17:34, Christian Costa wrote: --- dlls/shell32/shlfileop.c | 10 +- dlls/shell32/tests/shlfileop.c | 20 2 files changed, 29 insertions(+), 1 deletions(-) Correct me if I'm wrong, but isn't SetFileAttributes

Re: msxml3: Accept IObjectSafety for query from IXMLDOMDocument, fix its implementation.

2010-02-19 Thread Paul Vriens
On 02/19/2010 11:48 AM, Nikolay Sivov wrote: Accept IObjectSafety for query from IXMLDOMDocument, fix its implementation Hi Nikolay, This one introduces some test failures: http://test.winehq.org/data/tests/msxml3:domdoc.html Could you have a look? -- Cheers, Paul.

Re: msxml3: Accept IObjectSafety for query from IXMLDOMDocument, fix its implementation.

2010-02-19 Thread Nikolay Sivov
On 2/19/2010 19:28, Paul Vriens wrote: On 02/19/2010 11:48 AM, Nikolay Sivov wrote: Accept IObjectSafety for query from IXMLDOMDocument, fix its implementation Hi Nikolay, This one introduces some test failures: http://test.winehq.org/data/tests/msxml3:domdoc.html Could you have a look?

[PATCH 1/3] kernel32/tests: Add test for 'all processors' flag on Vista and newer.

2010-02-19 Thread Joerg-Cyril.Hoehle
Hi, Erich Hoover wrote: so if we're not testing the version we wouldn't know that it got removed. This is a very valid point. For instance, I'm currently writing a test that will read ok(1234123123==mhdr.dwOffset || broken(0==mhdr.dwOffset/*w9x,nt*/) ...) i.e. w2k+xp+Vista+7 differ from

Re: Hans Leidekker : msi: Add summary information stream to the streams table.

2010-02-19 Thread Nikolay Sivov
On 2/19/2010 18:21, Alexandre Julliard wrote: Module: wine Branch: master Commit: 1ff992314887d03abeb4098789701ff3bfd5d2d8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1ff992314887d03abeb4098789701ff3bfd5d2d8 Author: Hans Leidekkerh...@codeweavers.com Date: Fri Feb 19 12:27:36

SDL for DirectDraw

2010-02-19 Thread MD.IMAM HOSSAIN
*Dear Developers,* I just toying with *SDL* for a month and so. I am just wondering is there any possibilities to use *SDL* as a *WINE DirectDraw* wrapper. From my experience, *SDL* is not such a bad 2D graphics library and very easy to use and implement and has many flexible functions. Best

Re: SDL for DirectDraw

2010-02-19 Thread Roderick Colenbrander
Our DirectDraw implementation is good. Sure there are performance issues in some cases but those can be fixed. SDL is not suited for DirectDraw emulation because it doesn't offer all the functionality we need. Second, SDL on Linux uses X11 and other APIs directly. Games running on Wine use win32

Re: [PATCH 2/2] kernel32/tests: Add test for 'all processors' flag on Vista and newer (try 3).

2010-02-19 Thread Henri Verbeet
On 20 February 2010 00:19, Erich Hoover ehoo...@mines.edu wrote: +/* NOTE: Pre-Vista does not recognize the all processors flag (-1) */ +thread_affinity = -1; ~0UL probably makes more sense than -1 for an unsigned variable. -const ULONG_PTR *paff = data; +

Compiler Defaults

2010-02-19 Thread Kenneth Robinette
Is the Wine compile option to treat warnings as errors a Wine default or is it some type of system configuration option? Since the last couple of releases have quite a few of these, I am suspecting something is broken on my system.

Re: Compiler Defaults

2010-02-19 Thread Austin English
On Fri, Feb 19, 2010 at 6:32 PM, Kenneth Robinette supp...@securenetterm.com wrote: Is the Wine compile option to treat warnings as errors a Wine default or is it some type of system configuration option? Since the last couple of releases have quite a few of these, I am suspecting something

Re: [PATCH 2/2] kernel32/tests: Add test for 'all processors' flag on Vista and newer (try 3).

2010-02-19 Thread Erich Hoover
On Fri, Feb 19, 2010 at 5:08 PM, Henri Verbeet hverb...@gmail.com wrote: On 20 February 2010 00:19, Erich Hoover ehoo...@mines.edu wrote: +    /* NOTE: Pre-Vista does not recognize the all processors flag (-1) */ +    thread_affinity = -1; ~0UL probably makes more sense than -1 for an unsigned