Re: x11ddraw fix

2001-11-21 Thread Ove Kaaven
On Tue, 20 Nov 2001, Glenn Schrader wrote: The two attached patches seem to do the job. Thanks for the hints. Hmm. @@ -49,7 +49,7 @@ static LRESULT WINAPI GrabWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { - Display *display = thread_display(); + Display *display =

Re: x11ddraw fix

2001-11-21 Thread Glenn Schrader
Ove Kaaven wrote: On Tue, 20 Nov 2001, Glenn Schrader wrote: The two attached patches seem to do the job. Thanks for the hints. Hmm. @@ -49,7 +49,7 @@ static LRESULT WINAPI GrabWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { - Display *display = thread_display();

Re: x11ddraw fix

2001-11-21 Thread Ove Kaaven
On Wed, 21 Nov 2001, Glenn Schrader wrote: No it isn't, my mistake. Updated patches are attached. If that's the case, then this shouldn't be needed either... @@ -81,7 +81,7 @@ if(grab) { Window window = X11DRV_get_whole_window(GetFocus()); if(window) -

cleaning up pthreads implementation - ABI problem

2001-11-21 Thread Peter Hunnisett
Howdy, I was just looking at cleaning up the pthreads implementation but I don't think that it's possible to have our pthreads implementation without providing binary compatibility with the pthread implementation we're hijacking. The reason is that the mutex and rwlock objects are supposed to

Re: cleaning up pthreads implementation - ABI problem

2001-11-21 Thread Ove Kaaven
On Wed, 21 Nov 2001, Peter Hunnisett wrote: So our current pthreads mutex implementation works in Linux by the skin of its teeth, becuase the first field in the mutex is reserved and initialized to 0 (in both the static and pthread_mutex_init cases), provided the version of LinuxThreads

Re: Improving DIB support for SHM

2001-11-21 Thread Gavriel State
Doh! I guess we've been too lax about integrating some of our non D3D work back into WineHQ. We did this in WineX some time ago, but with a couple of differences: 1) We don't restrict using XShmGetImage to the whole-screen case and 2) We save and restore the XImage mask fields around the

Re: winedbg error

2001-11-21 Thread Dave Hawkes
Hi Eric, After some experimenting along the lines that you suggested (DEBUG_PrintTypeCast faulted!), it may be that the problem is something to do with the 'bool' type as I now eventually get lots of errors like this: Unknown type '1' failure on _Bool:t(0,21)=@s8;-16; at 16; Dave -

New level of Shlwapi (parts 1 2)

2001-11-21 Thread Guy L. Albertelli
Most of the shlwapi upgrades have been driven by my desire to be able to run Outlook Express under Wine. (I know that there are other mail packages, but the rest of the home uses Windows - anyway it is a great test vehicle, uses everything ever implemented). The current status is as follows:

Re: winedbg error

2001-11-21 Thread James Juran
On Wed, 21 Nov 2001, Dave Hawkes wrote: Hi Eric, After some experimenting along the lines that you suggested (DEBUG_PrintTypeCast faulted!), it may be that the problem is something to do with the 'bool' type as I now eventually get lots of errors like this: Unknown type '1' failure on

Re: Which is correct? listview or treeview?

2001-11-21 Thread Gerard Patel
At 01:58 PM 21/11/2001 -0800, you wrote: With regard to my problem that I was getting infinite redraws in my listview following Alexandre's change to server/user/message.c: I eventually tracked it down to the fact our code used SetRedraw(FALSE)/SetRedraw(TRUE) on a list control. (So the bug can