Re: Broken-down time (struct tm)

2009-12-19 Thread Dmitry Timoshkov
"Erich Hoover" wrote: I will soon have access to a network license for a piece of software that uses the Sentinel Protection Driver (ie. I do not need USB support), so I am looking into implementing ExSystemTimeToLocalTime (Bug 19395) so that the driver will work properly. In the process of re

Re: wine autodetec 32/64 application

2009-12-19 Thread Roderick Colenbrander
Hi Giuseppe, Support for 64-bit is under heavy development and it our goal for Wine 1.2. A simple script to forward execution to 32-bit or 64-bit wine is not enough. Work is going on to integrate 32-bit and 64-bit Wine. Parts of the infrastructure for this are already in place (e.g. a shared wines

Re: Conformance tess for cmd?

2009-12-19 Thread Eric Pouech
What about redirecting io pipes and use CreateProcess ? msdn has some examples : http://msdn.microsoft.com/en-us/library/ms682499%28VS.85%29.aspx that's what test_cl.h does... A+ -- Eric Pouech "The problem with designing something completely foolproof is to underestimate the ingenuity o

re: Broken-down time (struct tm)

2009-12-19 Thread Dan Kegel
fwiw, looks like it might be a problem when building on Solaris: https://issues.asterisk.org/view.php?id=12022 Not sure what to do when that field is missing offhand.

Re: comdlg32: Check if the shell view exists before using it to execute commands

2009-12-19 Thread Paul Chitescu
On Saturday 19 December 2009 08:19:03 pm Nikolay Sivov wrote: > On 12/19/2009 20:47, Paul Chitescu wrote: > > Changelog: > > comdlg32: Check if the shell view exists before using it to execute commands. > > > > Prevents crashing if trying to create new folder with a R/O Registry (which is > >

Re: Parser for cmd language?

2009-12-19 Thread Steven Edwards
On Sat, Dec 19, 2009 at 12:33 PM, Wolfram Sang wrote: > Has also relicensing such a spin-off been discussed? (Don't want to > impose anything, I'm just curious here.) Not specifically the case of cmd but we've been discussing it regarding large parts of the project as a whole. A dual or tri-licen

Broken-down time (struct tm)

2009-12-19 Thread Erich Hoover
I will soon have access to a network license for a piece of software that uses the Sentinel Protection Driver (ie. I do not need USB support), so I am looking into implementing ExSystemTimeToLocalTime (Bug 19395) so that the driver will work properly. In the process of researching a good way to su

Re: [2/2][tools]winetest: fix filesize limit

2009-12-19 Thread André Hentschel
Paul Vriens schrieb: > Hi André, > > On 12/19/2009 06:01 PM, André Hentschel wrote: >> if (defined $dll) { > > We should only get here if we've received a start of a test but not the > end. > >> # Either winetest crashed or the report file was cut off >> $_=""; >> -if ($filesiz

Re: [2/2][tools]winetest: fix filesize limit

2009-12-19 Thread Paul Vriens
Hi André, On 12/19/2009 06:01 PM, André Hentschel wrote: if (defined $dll) { We should only get here if we've received a start of a test but not the end. # Either winetest crashed or the report file was cut off $_=""; -if ($filesize == $maxfilesize) { +if ($filesize> $

ucla dxdiag sources now in separate repo...

2009-12-19 Thread Dan Kegel
... until they can be merged. That seems like a better solution than just keeping the patches around in hyperspace. The tree is at http://code.google.com/p/yadxdiag/ If anyone would like to help finish this up, please let me know. The spinning cube test is pretty cool. - Dan

Re: comdlg32: Check if the shell view exists before using it to execute commands

2009-12-19 Thread Nikolay Sivov
On 12/19/2009 20:47, Paul Chitescu wrote: Changelog: comdlg32: Check if the shell view exists before using it to execute commands. Prevents crashing if trying to create new folder with a R/O Registry (which is a bug by itself in a different module). Don't you mind add a test for th

Re: Parser for cmd language?

2009-12-19 Thread Wolfram Sang
> We (reactos developers) toyed with the idea of spawning some of the > subprojects off in the past, so perhaps we could create a new > sourceforge project, something along the lines of FreeCMD and move the > project and revision history there. Has also relicensing such a spin-off been discussed?

Re: Conformance tess for cmd?

2009-12-19 Thread Nicolas Le Cam
2009/12/19 Eric Pouech : > Dan Kegel a écrit : >> >> On Fri, Dec 18, 2009 at 11:50 PM, Eric Pouech >> wrote: >> >>> >>> If you want to control more closely commands vs output you can toy with >>> http://github.com/ericZp/wdtp/blob/master/test_cl.h >>> >> >> I would have thought that overkill for a

Re: Conformance tess for cmd?

2009-12-19 Thread Eric Pouech
Dan Kegel a écrit : On Fri, Dec 18, 2009 at 11:50 PM, Eric Pouech wrote: If you want to control more closely commands vs output you can toy with http://github.com/ericZp/wdtp/blob/master/test_cl.h I would have thought that overkill for a batch mode program like cmd, but it appears to

Re: Conformance tess for cmd?

2009-12-19 Thread Dan Kegel
On Fri, Dec 18, 2009 at 11:50 PM, Eric Pouech wrote: > If you want to control more closely commands vs output you can toy with > http://github.com/ericZp/wdtp/blob/master/test_cl.h I would have thought that overkill for a batch mode program like cmd, but it appears to have several interactive com

Re: Parser for cmd language?

2009-12-19 Thread Dan Kegel
On Fri, Dec 18, 2009 at 11:47 PM, Eric Pouech wrote: > beware that the integration of the parser in the current source code (ie > splitting in several small patches) can be tedious > so I'd rather see: > - implement the parser to be usable command by command (ie from first word, > to trigger eithe