Re: ntdll: CreateRemoteThread and friends for remote processes, take 3, via APCs

2006-08-03 Thread Thomas Kho
On 8/3/06, Thomas Kho <[EMAIL PROTECTED]> wrote: On 8/3/06, Mike Hearn <[EMAIL PROTECTED]> wrote: > Just one thing - can you try > it with something copy protected? I think some programs rely on being able > to CreateRemoteThread into a program that runs all the time and never > sleeps (eg games

Re: Wine and Photoshop in news

2006-08-03 Thread Scott Ritchie
I'm going to CC the author of the article here, as it looks like he's using my packages. On Tue, 2006-08-01 at 11:58 -0700, Dan Kegel wrote: > On 8/1/06, Jaap Stolk <[EMAIL PROTECTED]> wrote: > > On 8/1/06, Vijay Kiran Kamuju <[EMAIL PROTECTED]> wrote: > > > business05_aug01_2006 > > > > "with

Re: msi: The input buffer length is the number of characters excluding the NULL terminator, so fix an off by one error [RESEND]

2006-08-03 Thread Mike McCormack
James Hawkins wrote: Is there anything wrong with this patch? This fixes bug 5768. http://bugs.winehq.org/show_bug.cgi?id=5768 Changelog: * The input buffer length is the number of characters excluding the NULL terminator, so fix an off by one error. msi_strcpy_to_awstring is used by many f

Re: ntdll: CreateRemoteThread and friends for remote processes, take 3, via APCs

2006-08-03 Thread Thomas Kho
On 8/3/06, Mike Hearn <[EMAIL PROTECTED]> wrote: Just one thing - can you try it with something copy protected? I think some programs rely on being able to CreateRemoteThread into a program that runs all the time and never sleeps (eg games that try and get the highest FPS possible). Do you know

VNC and worms

2006-08-03 Thread Krzysztof Foltman
Can anyone figure out how to fix this display artifact that's very frequent when using Wine through VNC servers (tightvncserver and realvncserver, to be precise). http://foltman.com/worms.png It appears randomly on some redraws and not other ones (dragging the window off screen and back often

Re: widl: Write forward declarations for coclass definitions

2006-08-03 Thread Alexandre Julliard
Jacek Caban <[EMAIL PROTECTED]> writes: > I like the current names and I really think that your previous idea is > good. But if they > have to be changed, I'd suggest something like CWebBrowser, > CInternetExplorer > and CHTMLDocument. Well, it's really your code, so if you think the current name

Re: widl: Write forward declarations for coclass definitions

2006-08-03 Thread Jacek Caban
Dan Hipschman wrote: On Thu, Aug 03, 2006 at 03:44:49PM +0200, Jacek Caban wrote: be used to implement an object. And HTMLDocument is IMO the best name. Also $ grep -w HTMLDocument dlls/mshtml/*.[ch] |wc -l 304 $ grep -w WebBrowser dlls/shdocvw/*.[ch] |wc -l 210 $ grep -w InternetExplorer dl

Re: widl: Write forward declarations for coclass definitions

2006-08-03 Thread Dan Hipschman
On Thu, Aug 03, 2006 at 03:44:49PM +0200, Jacek Caban wrote: > be used to implement an object. And HTMLDocument is IMO the best name. Also > > $ grep -w HTMLDocument dlls/mshtml/*.[ch] |wc -l > 304 > $ grep -w WebBrowser dlls/shdocvw/*.[ch] |wc -l > 210 > $ grep -w InternetExplorer dlls/shdocvw/*.

Re: null dereference in dbghelp

2006-08-03 Thread Eric Pouech
Jan Zerebecki wrote: I tried to hack on http://bugs.winehq.org/show_bug.cgi?id=4848 and dbghelp failed on me. Log about the failure: http://bugs.winehq.org/attachment.cgi?id=3151&action=view Jan Actually, it crashes when loading some stabs information, and closing a block on a NULL

Re: Implement SetThreadPriority

2006-08-03 Thread Chris Robinson
On Thursday 03 August 2006 04:57, you wrote: > Allowing Windows > apps to use priorities that can hang the box is not acceptable, I can't help but think the kernel devs themselves disagree, since they explicitly added in this very "ability" for normal Linux apps (it's not like they can fully loc

Re: ntdll: CreateRemoteThread and friends for remote processes, take 3, via APCs

2006-08-03 Thread Dan Kegel
On 8/3/06, Dimi Paun <[EMAIL PROTECTED]> wrote: On Thu, 2006-08-03 at 02:08 -0500, Thomas Kho wrote: > APCs are queued per-thread, so I made minimal changes to add a > per-process APC queue. Of course, this implementation suffers from the > limitation that the remote process must go into an inter

Re: widl: Write forward declarations for coclass definitions

2006-08-03 Thread Jacek Caban
Alexandre Julliard wrote: Dan Hipschman <[EMAIL PROTECTED]> writes: diff --git a/dlls/mshtml/mshtml_private.h b/dlls/mshtml/mshtml_private.h index e0c1c3c..262ed37 100644 --- a/dlls/mshtml/mshtml_private.h +++ b/dlls/mshtml/mshtml_private.h @@ -53,7 +53,8 @@ typedef enum { EDITMODE

Re: widl: Write forward declarations for coclass definitions

2006-08-03 Thread Alexandre Julliard
Dan Hipschman <[EMAIL PROTECTED]> writes: > diff --git a/dlls/mshtml/mshtml_private.h b/dlls/mshtml/mshtml_private.h > index e0c1c3c..262ed37 100644 > --- a/dlls/mshtml/mshtml_private.h > +++ b/dlls/mshtml/mshtml_private.h > @@ -53,7 +53,8 @@ typedef enum { > EDITMODE > } USERMODE; >

Re: usp10: resend Remove a test that fails on Windows

2006-08-03 Thread Alexandre Julliard
Jeff L <[EMAIL PROTECTED]> writes: > Hans and I have worked this one a fair bit and think it looks to be > the final. Can you apply this? It would be a lot cleaner to create the DC in the caller and pass it to the functions that need it. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wininet: Support http_proxy environment variable

2006-08-03 Thread Augusto Arcoverde da Rocha
Exists a opened bug report about the problem which this patch is suposed to fix: http://bugs.winehq.org/show_bug.cgi?id=5625 Can someone give some comments for what this pach wasn't applied? Thanks, Augusto Arcoverde da Rocha

Re: Implement SetThreadPriority

2006-08-03 Thread Alexandre Julliard
Chris Robinson <[EMAIL PROTECTED]> writes: > Is there anything still wrong with this patch? I believe I've addressed the > concerns brought up before. If this patch is still unacceptable, what needs > to be done to make it acceptable? I explained the problem a number of times already. Allowing

Re: ntdll: CreateRemoteThread and friends for remote processes, take 3, via APCs

2006-08-03 Thread Dimi Paun
On Thu, 2006-08-03 at 02:08 -0500, Thomas Kho wrote: > APCs are queued per-thread, so I made minimal changes to add a > per-process APC queue. Of course, this implementation suffers from the > limitation that the remote process must go into an interuptible wait > for the operation to succeed; And

Re: ntdll: CreateRemoteThread and friends for remote processes, take 3, via APCs

2006-08-03 Thread Mike Hearn
On Thu, 03 Aug 2006 02:08:26 -0500, Thomas Kho wrote: > APCs are queued per-thread, so I made minimal changes to add a per-process > APC queue. Of course, this implementation suffers from the limitation that the > remote process must go into an interuptible wait for the operation to succeed; > an o

Re: Implement SetThreadPriority

2006-08-03 Thread Chris Robinson
Is there anything still wrong with this patch? I believe I've addressed the concerns brought up before. If this patch is still unacceptable, what needs to be done to make it acceptable?

ntdll: CreateRemoteThread and friends for remote processes, take 3, via APCs

2006-08-03 Thread Thomas Kho
ntdll: CreateRemoteThread and friends for remote processes, take 3, via APCs Hello, Much thanks for the comments on yesterday's patch of a service thread implementation for remote process operations. This patch uses APCs to implement CreateRemoteThread/RtlCreateUserThread, VirtualAllocEx/NtAlloca