Re: Windows 9x and Windows NT store the time zone data in different places.

2006-10-12 Thread Steven Edwards
On 10/12/06, Francois Gouget <[EMAIL PROTECTED]> wrote: 3) We could also say that we will wait for the 'registry links'. This sounds like the right method to me. -- Steven Edwards "There is one thing stronger than all the armies in the world, and that is an idea whose time has come." - Victo

Re: kernel level drivers - next try

2006-10-12 Thread Vitaliy Margolen
Marcus Meissner wrote: > Hi, > > I want to tackle the problem of loading and accessing > kernel drivers again. > > Since the previous tries were met with design concerns, > lets try to clarify design issues first. I would say there are 4 issues: 1. We need ntoskrnl.exe - it is more of the DLL th

Re: msi: Test the install sequence order

2006-10-12 Thread James Hawkins
On 10/12/06, James Hawkins <[EMAIL PROTECTED]> wrote: Hi, MSI installers usually have at least two install sequencing tables, InstallExecuteSequence and InstallUISequence. If the install is run at the Full UI level, then the installer executes the actions in the InstallUISequence table in order

Re: bugzilla app upgrading

2006-10-12 Thread Tom Spear
On 10/11/06, Jérôme Bouat <[EMAIL PROTECTED]> wrote: Hello,Because of the following bughttp://bugs.winehq.org/show_bug.cgi?id=5202I would like a new version of Bugzillato be installed.Who can install the new version ? I can provide scripts for migrating datum.Thanks.I agree, the current version of

Re: regedit: Allow importing UCS-2 and UTF-8 files created by Windows' regedit v5

2006-10-12 Thread Detlef Riekenberg
On Do, 2006-10-12 at 17:30 +0300, Paul Chitescu wrote: > +/* Attempt to guess the encoding from the first several > bytes */ > + > +/* Extremely crude routine to convert to 8-bit */ Thanks for working on this Feature. As already mentioned, UNICODE is the better way. (You c

Coverity scan should be up and running again within the next 24 hours

2006-10-12 Thread Paul Vriens
Hi, just received an email (after I'd asked) that the Wine scans should be available again within the next 24 hours. The current main page http://scan.coverity.com/, doesn't show Wine currently but that also will change in the next 24 hours. Cheers, Paul.

Re: kernel level drivers - next try

2006-10-12 Thread Saulius Krasuckas
* On Wed, 11 Oct 2006, Marcus Meissner wrote: > - Services are handled and registered by ADVAPI32. > > Currently we handle process type services correctly, > which are started using CreateProcess(). > These are marked with SERVICE_WIN32 or similar flags. Right, probably this type is handled

Using xstrdup()?

2006-10-12 Thread Andrew Talbot
Hi, I want to use xstrdup() in winebuild/search.c. What do I need to do to make this function available in this file, please? Thanks, -- Andy.

Re: msvcrt: fread: fill buffer on small reads

2006-10-12 Thread Duane Clark
Markus Amsler wrote: Duane Clark wrote: Alexandre Julliard wrote: Markus Amsler <[EMAIL PROTECTED]> writes: + /* fill empty buffer on small reads */ + if(!file->_cnt && rcnt <= MSVCRT_BUFSIZ) { +MSVCRT__filbuf(file); +/* reset internal buffer */ +file->_cnt++; +file->_ptr

bugzilla app upgrading

2006-10-12 Thread Jérôme Bouat
Hello, Because of the following bug http://bugs.winehq.org/show_bug.cgi?id=5202 I would like a new version of Bugzilla to be installed. Who can install the new version ? I can provide scripts for migrating datum. Thanks.

Re: regedit: Allow importing UCS-2 and UTF-8 files created by Windows'regedit v5

2006-10-12 Thread Dmitry Timoshkov
"Paul Chitescu" <[EMAIL PROTECTED]> wrote: +/* Attempt to guess the encoding from the first several bytes */ +if (encoding < 0) { +if (line [0] == '\377' && line [1] == '\376') { +encoding = 2; /* FF FE=> UCS-2 little endian */ +

Re: regedit: Allow importing UCS-2 and UTF-8 files created by Windows' regedit v5

2006-10-12 Thread Robert Shearman
Paul Chitescu wrote: Changelog: regedit: Allow importing UCS-2 and UTF-8 files created by Windows' regedit v5. The code tries to detect the encoding from the first read bytes. UTF-8 is not modified while UCS-2 is converted by keeping only the lower byte. The code that you have added is re

Re: localspl: Implement InitializePrintMonitor

2006-10-12 Thread Alexandre Julliard
Detlef Riekenberg <[EMAIL PROTECTED]> writes: > +BOOL WINAPI localmon_create_globals(void) > +{ > +if (g_monitorex == NULL) { > +g_monitorex = spl_alloc_zero(sizeof(MONITOREX)); > +if (g_monitorex == NULL) return FALSE; > + > +g_monitorex->dwMonitorSize = sizeof(MONITOR

winetest question

2006-10-12 Thread Mikołaj Zalewski
Why does winetest start programs with STARTUPINFO.wShowWindow = SW_HIDE? I think this makes some of the toolbar tests fail as they depend UpdateWindow sending a WM_PAINT (they fail when launched by winetest but pass when running comctl32_test.exe from the command line). Could I remove this lin

Re: ws2_32/socket16.c:319

2006-10-12 Thread Alexandre Julliard
Marcus Meissner <[EMAIL PROTECTED]> writes: > On Thu, Oct 12, 2006 at 10:06:39AM +0200, Hans Leidekker wrote: >> INT16 WINAPI ioctlsocket16(SOCKET16 s, LONG cmd, ULONG *argp) >> { >> u_long arg = *argp; >> return WS_ioctlsocket( s, cmd, &arg ); >> } > > argp is for in- and output. > > I wo

Re: cfgmgr32: Move cfgmgr32.h to include/ to match the SDK

2006-10-12 Thread Alexandre Julliard
"James Hawkins" <[EMAIL PROTECTED]> writes: > Hi, > > Changelog: > * Move cfgmgr32.h to include/ to match the SDK. When moving or adding headers, you need to fix include/Makefile.in too. -- Alexandre Julliard [EMAIL PROTECTED]

Re: ws2_32/socket16.c:319

2006-10-12 Thread Marcus Meissner
On Thu, Oct 12, 2006 at 10:06:39AM +0200, Hans Leidekker wrote: > On Thursday 12 October 2006 03:58, Michael [Plouj] Ploujnikov wrote: > > > INT16 WINAPI ioctlsocket16(SOCKET16 s, LONG cmd, ULONG *argp) > > { > > return WS_ioctlsocket( s, cmd, argp ); /* <- line 319 */ > > } > > > Is it wrong

Re: ws2_32/socket16.c:319

2006-10-12 Thread Hans Leidekker
On Thursday 12 October 2006 03:58, Michael [Plouj] Ploujnikov wrote: > INT16 WINAPI ioctlsocket16(SOCKET16 s, LONG cmd, ULONG *argp) > { > return WS_ioctlsocket( s, cmd, argp ); /* <- line 319 */ > } > Is it wrong "BSD-only" u_long in this function? Should WS_ioctlsocket > be fixed to use a U