Re: SoC idea: fix wine 2398 bug.

2006-05-15 Thread Marcin Kardas
gltest once again - see attachment. This time you can move windows with mouse (but don't go out of main window or resize main window). gltest2.c Description: Binary data

Re: dnsapi: Switch from libresolv to libbind for DNS support.

2006-05-15 Thread Marcus Meissner
On Sat, May 13, 2006 at 05:10:55PM +0200, Hans Leidekker wrote: This patch presents an alternative to the one I sent a while ago that adds two source files from libbind. The advantage of this alternative is that it brings DNS message parsing support and DNS update support, without adding

Re: dnsapi: Switch from libresolv to libbind for DNS support.

2006-05-15 Thread Hans Leidekker
On Monday 15 May 2006 12:52, Marcus Meissner wrote: While it is allowed to link it, it will also make dnsapi and likely WINE itself fall under the BSD 4 clause license (additionaly to LGPL) and both need to be honored from this point on. I guess this rules out linking to libbind. I think

Re: user32: Add more ShowWindow tests

2006-05-15 Thread Alexandre Julliard
Dmitry Timoshkov [EMAIL PROTECTED] writes: @@ -3217,7 +3295,7 @@ static void test_showwindow(void) trace(calling ShowWindow( SW_SHOWMAXIMIZE ) for invisible popup window\n); ShowWindow(hwnd, SW_SHOWMAXIMIZED); -ok_sequence(WmShowMaxPopupResizedSeq,

Re: Starred Chats ... blah blah blah

2006-05-15 Thread Matt Finnicum
This was *supposed* to have been titled: riched20: Implement EM_SETUNDOLIMIT and its conformance tests, take 3 Sorry! --Matt On 5/15/06, Matt Finnicum [EMAIL PROTECTED] wrote: Hello! Patch updated w/ Dimi Paun's advice (using #define's for the default and max values), and slightly cleaned

Re: Starred Chats Sent Mail Drafts (2) All Mail Spam (2510) Trash Contacts Labels battlezone class 05-06 facebook [EMAIL PROTECTED] myself Summer of Code wine-appdb (16) wine-bugs wine-devel (10) w

2006-05-15 Thread Dimi Paun
On Mon, May 15, 2006 11:28 am, Matt Finnicum wrote: Hello! Patch updated w/ Dimi Paun's advice (using #define's for the default and max values), and slightly cleaned up. Well, not quite (maybe you've sent the wrong patch): + case EM_SETUNDOLIMIT: + { +if ((int)wParam 0) +

ClipCursor implementation

2006-05-15 Thread Remus
Hello, Please excuse me if i didn't sent this mail to the right mailing list. I want to implement in Linux a function similar with ClipCursor, but without using XGrabPointer(). The first time i tried to process mouse-move events, but it doesn't look good. Second time i tried XGrabPointer(),

Re: riched20: Implement EM_SETUNDOLIMIT and its conformance tests, take 4

2006-05-15 Thread Dimi Paun
On Mon, May 15, 2006 1:22 pm, Matt Finnicum wrote: Hopefully, i've managed to do this one right. It is, but why not use STACK_SIZE_DEFAULT here as well: + ed-nUndoLimit = 100; /* 100 is the proper default */ -- Dimi Paun [EMAIL PROTECTED] Lattica, Inc.

Re: Dinput8: DirectInput8Create rewrite

2006-05-15 Thread Roderick Colenbrander
On 5/15/06, Roderick Colenbrander [EMAIL PROTECTED] wrote: Are you sure it is this patch that causes the regression and not Vitaly's latest one? This patch changes the way dinput8 objects are created and it does this similar to windows. Could you figure out what part breaks it?

WineGL, take two

2006-05-15 Thread Tomas Carnecky
After submitting the patches last night, I got some feedback on IRC. It seems that adding new exports to gdi32.dll is bad (it apparently tends to break applications, those using safedisc2 seem to be good candidates), so I had to look for another solution. Everything that follows here is under the

Re: Dinput8: DirectInput8Create rewrite

2006-05-15 Thread Roderick Colenbrander
On 5/15/06, Roderick Colenbrander [EMAIL PROTECTED] wrote: Yes, that's the reason. I forgot that I still need to send the patch for the registry settings. Basicly what you need to add is this: What about bf798030-483a-4da2-aa99-5d64ed369700? trace:ole:DllMain 0x7f3b 0x1 0x1

Re: Dinput8: DirectInput8Create rewrite

2006-05-15 Thread Jesse Allen
On 5/15/06, Roderick Colenbrander [EMAIL PROTECTED] wrote: I think the issue is that CoInitialize isn't called from DirectInput8Create main. I think I missed this because my test app did this for me. Try to add a CoInitialize(NULL); and see if it helps. (and a CoUninitialize) Ok, I did that

Re: WineGL, take two

2006-05-15 Thread Kuba Ober
On Monday 15 May 2006 13:49, Tomas Carnecky wrote: After submitting the patches last night, I got some feedback on IRC. It seems that adding new exports to gdi32.dll is bad (it apparently tends to break applications, those using safedisc2 seem to be good candidates), so I had to look for

Re: Dinput8: DirectInput8Create rewrite

2006-05-15 Thread Roderick Colenbrander
On 5/15/06, Roderick Colenbrander [EMAIL PROTECTED] wrote: I think the issue is that CoInitialize isn't called from DirectInput8Create main. I think I missed this because my test app did this for me. Try to add a CoInitialize(NULL); and see if it helps. (and a CoUninitialize) Ok,

Re: SoC idea: fix wine 2398 bug.

2006-05-15 Thread Raphael
On Monday 15 May 2006 12:33, Marcin Kardas wrote: gltest once again - see attachment. This time you can move windows with mouse (but don't go out of main window or resize main window). Funny demo :) Regards, Raphael pgpIJi3r8bGIe.pgp Description: PGP signature

Re: rpcrt4: Implemented NTLM authentication for rpcrt4 connections.

2006-05-15 Thread Kai Blin
* Mike McCormack [EMAIL PROTECTED] [15/05/06, 23:04:25]: + r = AcquireCredentialsHandleA(NULL, NTLM, SECPKG_CRED_OUTBOUND, NULL, +AuthIdentity, NULL, NULL, bind-cred, bind-exp); Sweet. Glad to see that code in use. :) + /* tack on a negotiate packet

Re: thanks for wine

2006-05-15 Thread Ulrich Czekalla
Yes this case is problematic. Now that the desktop window is owned by the explorer process OpenClipboard(GetDesktopWindow()) won't work. The selection owner will become the explorer process but the data will live in the current process. The result will be that no data will be available to

Re: rpcrt4: Implemented NTLM authentication for rpcrt4 connections.

2006-05-15 Thread Mike McCormack
Kai Blin wrote: + /* tack on a negotiate packet */ + RPCRT4_AuthNegotiate(Connection, out); + r = RPCRT4_SendAuth(Connection, Header, Buffer, BufferLength, out.pvBuffer, out.cbBuffer); + HeapFree(GetProcessHeap(), 0, out.pvBuffer); Should that actually be a Negotiate packet? If it

Re: thanks for wine

2006-05-15 Thread qingdoa daoo
How about doing something in explorer. We already launch an instance of explorer as systray listener for the first Win32 app. We could make explorer also act as a clipboard server. If that can be done, we no longer rely on any message loop in the process doing clipboard operations. This case

Re: user32: Add more ShowWindow tests

2006-05-15 Thread Dmitry Timoshkov
Alexandre Julliard [EMAIL PROTECTED] wrote: @@ -3217,7 +3295,7 @@ static void test_showwindow(void) trace(calling ShowWindow( SW_SHOWMAXIMIZE ) for invisible popup window\n); ShowWindow(hwnd, SW_SHOWMAXIMIZED); -ok_sequence(WmShowMaxPopupResizedSeq,

Re: Help needed: Drawing of transformed vertices

2006-05-15 Thread Aric Cyr
Stefan Dösinger stefan at codeweavers.com writes: Can you test the patch on some d3d8 and d3d9 games? I tested it on warcraft 3 and half-life 2 and didn't see any difference. Can you report negative and positive changes? I'll give Age of Mythology a try if I get some time... (been so busy