wine segfaulting

2006-10-10 Thread Pavel Troller
Hi! I have a problem running wine on one of my machines. It's the same binary copy which I've compiled and which successfully runs on another ones. The problem is that many apps, which run on other machines, cause wine to segfault here. The first one doing so is "rundll.exe setupapi.dll...", in

Re: Add IRunnableObject stub implementation

2006-10-10 Thread Vijay Kiran Kamuju
Hi, I will wait on sending tests on this one. Until the first one gets in (http://www.winehq.org/pipermail/wine-patches/2006-September/030659.html) Then I will resend with tests. Or may be I will write tests and send them seperately, it really depends on mood tommorrow afternoon. bye, VJ On 10/11

re: Add IRunnableObject stub implementation

2006-10-10 Thread Dan Kegel
On 10/10/06, Huw Davies wrote: > On Tue, Oct 10, 2006 at 04:45:40PM -0400, Vijay Kiran Kamuju wrote: > > Add IRunnableObject stub implementation, > > It's not at all clear to me what this interface should do in this > context. Could you at least add a test that shows that the domdoc > object sho

Re: location of atlbase.h

2006-10-10 Thread Mike McCormack
James Hawkins wrote: MS Platform SDK has atlbase.h as a public header in include/atl. Shouldn't we follow suit? Right now atlbase.h is in dlls/atl. Our atlbase.h is written in C, whereas Microsoft's is written in C++. Given that the original atlbase.h includes alot of C++ code, and reimple

Re: Anybody have a RegDeleteTree[A|W] implementation lying around?

2006-10-10 Thread Vitaliy Margolen
Segin wrote: > James Hawkins wrote: >> On 10/10/06, Segin <[EMAIL PROTECTED]> wrote: >>> Some Google searching provides that there may or may not be an >>> implementation. >>> >>> http://www.reactos.org/pipermail/ros-svn/2005-August/005303.html >>> ([ros-svn] [weiden] 17572: implemented RegDeleteTr

Common Controls to-do list

2006-10-10 Thread Dan Kegel
I've been looking around for a good project for a group of ten students for the spring term. In 2006, I had them work on implementing missing features in richedit. Most of the easy features there have been implemented now, I think, so I looked at msxml3. That's not a great candidate, as a fair n

Re: Anybody have a RegDeleteTree[A|W] implementation lying around?

2006-10-10 Thread Segin
James Hawkins wrote: > On 10/10/06, Segin <[EMAIL PROTECTED]> wrote: >> > >> Some Google searching provides that there may or may not be an >> implementation. >> >> http://www.reactos.org/pipermail/ros-svn/2005-August/005303.html >> ([ros-svn] [weiden] 17572: implemented RegDeleteTree() (untested!)

Re: Possible fix idea for NtProtectVirtualMemory

2006-10-10 Thread Thomas Kho
On 10/10/06, Segin <[EMAIL PROTECTED]> wrote: It took some good hydro from Holland and about 6 hours of trying to write a program that could syncronize multiple instances of itself using IPC and signals (so it could run on Minix 3, where pthreads sadly doesn't exist, so it was a threading hack of

Re: msvcrt: fread: fill buffer on small reads

2006-10-10 Thread Duane Clark
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 = file->_base; + } You need to handle e

Re: Regression in wine in your patch.

2006-10-10 Thread Michael [Plouj] Ploujnikov
On 10/10/06, Konrad Materka <[EMAIL PROTECTED]> wrote: Hello, I found a regression in wine-0.9.21. Exactly in patch: winex11.drv: Move WGL extension code to winex11.drv 12dbce5c938a060721a70411d579b4e6eec2c4a6 Background: It's probably a good idea to post this on bugzilla. -- () ASCII Ribbon

Re: Please create wine-msxml and wine-setupapi components in bugzilla

2006-10-10 Thread Dan Kegel
On 9/24/06, Tony Lambregts <[EMAIL PROTECTED]> wrote: I just wanted to point out that we have a component wine-gui that is kind of a catch all that seems to include bugs in richedit, ddraw, comctrl, rebar and x11. I believe it would be a good thing if someone could do some janitorial on this to s

Requesting testing for the hotkey implementation

2006-10-10 Thread Aaron Slunt
I'm attaching the patch, first started by Robert Reif, then finished off by Vincent Povirk, and cleaned up by myself to apply to the current GIT tree. I'm asking devs/users to please test this patch out. It implements Register/UnregisterHotkey in wine. I have yet to come across any issues wit

Re: Anybody have a RegDeleteTree[A|W] implementation lying around?

2006-10-10 Thread James Hawkins
On 10/10/06, Segin <[EMAIL PROTECTED]> wrote: > Some Google searching provides that there may or may not be an implementation. http://www.reactos.org/pipermail/ros-svn/2005-August/005303.html ([ros-svn] [weiden] 17572: implemented RegDeleteTree() (untested!)) mentions this, and nothing more: ---

location of atlbase.h

2006-10-10 Thread James Hawkins
Hi, MS Platform SDK has atlbase.h as a public header in include/atl. Shouldn't we follow suit? Right now atlbase.h is in dlls/atl. -- James Hawkins

Re: Anybody have a RegDeleteTree[A|W] implementation lying around?

2006-10-10 Thread Segin
Brad DeMorrow wrote: > Is Anyone currently working on this? > > If Not - I would like to start working on this part myself, it seems > like it > is fairly simple - but tedious work :-) > > Shouldn't be too much of a hassle and should help a little > > --Brad DeMorrow > > > On 9/28/06, Frank Ri

adding undocumented APIs to public headers

2006-10-10 Thread James Hawkins
Hey guys, What is our policy on adding undocumented functions to Wine's public headers? My stance is that we, as an alternative implementation of the Win32 API, provide another set of Win32 public headers, like Microsoft and cygwin/mingw provide as well. If our headers contain undocumented func

Re: Anybody have a RegDeleteTree[A|W] implementation lying around?

2006-10-10 Thread Brad DeMorrow
Is Anyone currently working on this? If Not - I would like to start working on this part myself, it seems like it is fairly simple - but tedious work :-)  Shouldn't be too much of a hassle and should help a little --Brad DeMorrowOn 9/28/06, Frank Richter <[EMAIL PROTECTED]> wrote: On 28.09.2006 15:

Possible fix idea for NtProtectVirtualMemory

2006-10-10 Thread Segin
It took some good hydro from Holland and about 6 hours of trying to write a program that could syncronize multiple instances of itself using IPC and signals (so it could run on Minix 3, where pthreads sadly doesn't exist, so it was a threading hack of sorts) to come up with a possible fix for the c

Re: [PATCH] handle XML_DOCUMENT_NODE like XML_ATTRIBUTE_NODE.

2006-10-10 Thread Huw Davies
On Mon, Oct 09, 2006 at 07:33:15PM +, Marcus Meissner wrote: > --- a/dlls/msxml3/node.c > +++ b/dlls/msxml3/node.c > +case XML_DOCUMENT_NODE: /* FIXME: not sure if node() is correct for > document nodes. */ Nor me. Which means we really need a test ;-) Huw.

Re: [msxml3] Add IRunnableObject stub implementation

2006-10-10 Thread Vijay Kiran Kamuju
Check the bug# 6341, previously I sent a patch http://www.winehq.org/pipermail/wine-patches/2006-September/030659.html No response, so I thought its noway getting into the main tree, so no tests. Well I sent this one to the list so that it does not get lost. On 10/10/06, Huw Davies <[EMAIL PROTEC

Re: [msxml3] Add IRunnableObject stub implementation

2006-10-10 Thread Huw Davies
On Tue, Oct 10, 2006 at 04:45:40PM -0400, Vijay Kiran Kamuju wrote: > Add IRunnableObject stub implementation, It's not at all clear to me what this interface should do in this context. Could you at least add a test that shows that the domdoc object should expose IRunnableObject? Thanks, Huw.

Regression in wine in your patch.

2006-10-10 Thread Konrad Materka
Hello, I found a regression in wine-0.9.21. Exactly in patch: winex11.drv: Move WGL extension code to winex11.drv 12dbce5c938a060721a70411d579b4e6eec2c4a6 Background: In Poland we have program called "Płatnik". It is very important, because we use this to send taxes and other stupid things. Unfor

Re: [PATCH 1/6] lz32/tests: Test more last errors set by LZOpenFile[AW].

2006-10-10 Thread Saulius Krasuckas
* On Tue, 10 Oct 2006, Michael Stefaniuc wrote: > * James Hawkins wrote: > >> @@ -148,6 +149,8 @@ static void test_LZOpenFileA_existing_co > >> test.szPathName, expected); > >> LZClose(file); > >>} else { /* Win9x */ > >> +ok(GetLastError() == ERROR_FILE_NOT_FOUND, > >> +

Re: [PATCH 1/6] lz32/tests: Test more last errors set by LZOpenFile[AW].

2006-10-10 Thread Michael Stefaniuc
James Hawkins wrote: > On 10/10/06, Saulius Krasuckas <[EMAIL PROTECTED]> wrote: > >> @@ -148,6 +149,8 @@ static void test_LZOpenFileA_existing_co >> test.szPathName, expected); >> LZClose(file); >>} else { /* Win9x */ >> +ok(GetLastError() == ERROR_FILE_NOT_FOUND, >> +

Re: oleaut32: Add tmarshal conformance test

2006-10-10 Thread Michal Okresa
> And how does this relate to the version that Dan Hipschman sent in: > http://winehq.org/pipermail/wine-patches/2006-August/029511.html > (and which didn't work on Alexandre's machine, > http://winehq.org/pipermail/wine-devel/2006-August/050185.html )? > - Dan this patch fixes two problems in ori

Re: [PATCH 1/6] lz32/tests: Test more last errors set by LZOpenFile[AW].

2006-10-10 Thread James Hawkins
On 10/10/06, Saulius Krasuckas <[EMAIL PROTECTED]> wrote: @@ -148,6 +149,8 @@ static void test_LZOpenFileA_existing_co test.szPathName, expected); LZClose(file); } else { /* Win9x */ +ok(GetLastError() == ERROR_FILE_NOT_FOUND, + "GetLastError() returns %ld\n", GetLastErr

client-side DIB copy?

2006-10-10 Thread Damjan Jovanovic
Hi I'm trying to implement the "client-side DIB copy optimization" mentioned in dlls/winex11.drv/bitblt.c, but I'm having trouble. The patch (against wine-0.9.22) is attached. The one app I know that uses it, Heroes of might and magic 4, runs much faster with the patch, but the graphics come out

Re: Make all windows moveable by default

2006-10-10 Thread Dmitry Timoshkov
"Vitaliy Margolen" <[EMAIL PROTECTED]> wrote: - Start the program and navigate to a picture file - Double click on the file - If in window mode, switch to full screen (using middle button) - While in full screen mode use middle button to switch back to file browser - Double click picture file ag

Re: msvcrt: fread: fill buffer on small reads

2006-10-10 Thread Alexandre Julliard
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 = file->_base; > + } You need to handle errors properly

Re: wined3d: CreateFakeGLContext should also work when we have a context [3rd try]

2006-10-10 Thread Alexandre Julliard
Jan Zerebecki <[EMAIL PROTECTED]> writes: > +static void WineD3D_CreateFakeGLContext(void) { > +TRACE_(d3d_caps)("getting context...\n"); > +if(wined3d_fake_gl_context_ref > 0) goto ret; > +assert(0 == wined3d_fake_gl_context_ref); > + > +wined3d_fake_gl_context_foreign = TRUE; > +

Re: windows web server app fails to send more than 11680 bytes !?

2006-10-10 Thread Stefan Dösinger
Am Montag 09 Oktober 2006 22:27 schrieb [IDC]Dragon: > > to me, I wouldn't be surprised if overlapped I/O on sockets are to blame > > a +ntdll trace would be helpful > > How do I enable that? (likely a noob question) WINEDEBUG=+ntdll wine foo.exe pgpqCaC0ce08v.pgp Description: PGP signature