Re: Fix NtAccessCheck so it works with relative SECURITY_DESCRIPTORs

2005-05-31 Thread Robert Shearman
Evan Deaubl wrote: ChangeLog: * Fix NtAccessCheck so it works with relative SECURITY_DESCRIPTORs I cleaned up the patch a little. Does this still work for you? Changelog: Evan Deaubl [EMAIL PROTECTED] Robert Shearman [EMAIL PROTECTED] - Implement RtlGetControlSecurityDescriptor - Fix

Re: Borland C++ 4.5

2005-05-31 Thread Uwe Bonnes
Andrew == Andrew Neil Ramage [EMAIL PROTECTED] writes: Andrew When I tried to install BC++ 4.5, the installation proceeded Andrew normally. However, when I clicked Finish, it trashed my X Andrew server, causing the system to stop responding to key presses and Andrew the mouse.

Re: Default setting for RelayExclude

2005-05-31 Thread Alexandre Julliard
Mike Hearn [EMAIL PROTECTED] writes: On Thu, 26 May 2005 01:15:45 +0100, Mike Hearn wrote: Mike Hearn [EMAIL PROTECTED] Default setting for RelayExclude Alexandre, any reason this didn't get in? I'm not really opposed to the idea, but your suggested defaults are not really a good choice

Re: [Fwd: Re: Extending File Dialog to include unix file paths]

2005-05-31 Thread Alexandre Julliard
Michael Lin [EMAIL PROTECTED] writes: Hi Alexandre, I haven't got a reply from you on this issue yet. Please let me know what you think of the patch. I think it's still too intrusive, and it's still adding entry points where it shouldn't. Anyway, I would suggest to not try to get stuff into

Print unicode strings in tests

2005-05-31 Thread Paul Vriens
Hi, I'd like to print unicode-strings in some tests (for debugging purposes). The following however does not show nice output on wine (it does on windows): static const WCHAR dataW[] = {'S','o','m','e',' ','d','a','t','a',0}; UNICODE_STRING usdata = { sizeof(dataW)-sizeof(WCHAR), sizeof(dataW),

Re: Fix implicit loading of 16bit GDI USER

2005-05-31 Thread Richard Cohen
Alexandre Julliard wrote: The problem is probably that GDI isn't pre-loaded, which is the case for 32-bit apps now that GDI no longer needs the local heap. That would explain it. What app is causing the problem? Scansoft Paperport version 6 (.5? -- there are different version numbers all

Re: Fix implicit loading of 16bit GDI USER

2005-05-31 Thread Alexandre Julliard
Richard Cohen [EMAIL PROTECTED] writes: Alexandre Julliard wrote: The problem is probably that GDI isn't pre-loaded, which is the case for 32-bit apps now that GDI no longer needs the local heap. That would explain it. What app is causing the problem? Scansoft Paperport version 6

Re: Fix implicit loading of 16bit GDI USER

2005-05-31 Thread Richard Cohen
Alexandre Julliard wrote: The easiest is probably to go back to always loading GDI. Something like this should do the trick: That works for me.

Re: Default setting for RelayExclude

2005-05-31 Thread Mike Hearn
On Tue, 31 May 2005 15:08:37 +0200, Alexandre Julliard wrote: I'm not really opposed to the idea, but your suggested defaults are not really a good choice IMHO. Which ones would you choose? The ones in the list were based on filtering out known bad calls from a sample relay trace until I felt

Re: Borland C++ 4.5

2005-05-31 Thread Andrew Neil Ramage
This was a BC++ 4.5 CD I bought years ago. The system I use is SusE 9.2 Desktop (hoping to upgrade to Pro soon) and the latest wine cvs. There was no debugging information available as the system hung, so I could not access the shell window I started the install from. Andrew You can be the

Re: wine/dlls/setupapi parser.c

2005-05-31 Thread Robert Shearman
Alexandre Julliard wrote: Index: wine/dlls/setupapi/parser.c diff -u -p wine/dlls/setupapi/parser.c:1.15 wine/dlls/setupapi/parser.c:1.16 --- wine/dlls/setupapi/parser.c:1.15Tue May 31 17:10:06 2005 +++ wine/dlls/setupapi/parser.c Tue May 31 17:10:06 2005 @@ -852,7 +852,9 @@ static DWORD

Re: Borland C++ 4.5

2005-05-31 Thread Kuba Ober
On Tuesday 31 May 2005 11:29, Andrew Neil Ramage wrote: This was a BC++ 4.5 CD I bought years ago. The system I use is SusE 9.2 Desktop (hoping to upgrade to Pro soon) and the latest wine cvs. There was no debugging information available as the system hung, so I could not access the shell

Re: ntdll.dll: mark dirlink as REPARSE_POINT (v2)

2005-05-31 Thread Detlef Riekenberg
Am Dienstag, den 31.05.2005, 00:35 -0400 schrieb Dimi Paun: On Tue, 2005-05-31 at 06:21 +0200, Detlef Riekenberg wrote: -if (S_ISDIR( st.st_mode ) !show_dir_symlinks) return NULL; +if (S_ISDIR( st.st_mode )) + { + if (!show_dir_symlinks) return NULL; +

Re: wine/dlls/setupapi parser.c

2005-05-31 Thread Alexandre Julliard
Robert Shearman [EMAIL PROTECTED] writes: Alexandre Julliard wrote: Index: wine/dlls/setupapi/parser.c diff -u -p wine/dlls/setupapi/parser.c:1.15 wine/dlls/setupapi/parser.c:1.16 --- wine/dlls/setupapi/parser.c:1.15 Tue May 31 17:10:06 2005 +++ wine/dlls/setupapi/parser.c Tue May 31

Re: Borland C++ 4.5

2005-05-31 Thread wino
I had a similar situation installing Dragon Nat. Speaking with installshield. I thought the thing was hanging and infact it was popping up a modal dlg with a yes/no or whatever and wine was failing to bring it to the front. If the BC installer is hogging the whole screen and you are

Re: Borland C++ 4.5

2005-05-31 Thread Andreas Mohr
Hi, On Tue, May 31, 2005 at 10:31:33PM +0200, [EMAIL PROTECTED] wrote: It's fairly unlikely that an installer will really cripple your kernel to the point where you have to power-off. Well, it's fairly likely if you have a program allocating the whole world and even a bit more than that (e.g.

Re: Borland C++ 4.5

2005-05-31 Thread Mike Hearn
On Tue, 31 May 2005 15:53:19 -0400, Kuba Ober wrote: Did you try ssh'ing into the system and executing 'killall X' as root? The mere fact that X doesn't react to keystrokes doesn't necessarily mean that the system is hanging. If the system no longer responds to keystrokes then it *has* hung

Re: Borland C++ 4.5

2005-05-31 Thread Uwe Bonnes
Mike == Mike Hearn [EMAIL PROTECTED] writes: Mike On Tue, 31 May 2005 15:53:19 -0400, Kuba Ober wrote: Did you try ssh'ing into the system and executing 'killall X' as root? The mere fact that X doesn't react to keystrokes doesn't necessarily mean that the system is hanging.

Re: Borland C++ 4.5

2005-05-31 Thread Andrew Neil Ramage
The screen was corrupted - the install was a small window in the corner (ie, it took over the shell window), but when it tried to create a desktop icon (I think) the whole screen became a patchwork of colours. Andrew You can be the captain I will draw the chart Sailing into destiny Closer to

Search, and screenshots [Was Re: Half Life 2 error -- err:mmio:MMIO_ParseExtA]

2005-05-31 Thread J. Grant
Also if there is already a document on setting up Half Life2 could someone direct me to it please, I could not find one already. I'm not sure about your specific error, but I was able to get HL2 to start with Oliver Stieber's d3d patches. However, it was far from playable for me. Models were

Re: Search, and screenshots [Was Re: Half Life 2 error -- err:mmio:MMIO_ParseExtA]

2005-05-31 Thread Ivan Gyurdiev
The image is also scaled so small that the text in the screenshots is unreadable. I think it scales it automatically - my original submission was much larger (too large in fact, so it's probably a good thing it's scaled). On the other hand, if you look at the Steam screenshot I submitted,

Google Summer of Code

2005-05-31 Thread Daniel Kegel
Google is offering students summer stipends to contribute to open source projects! To qualify for a stipend, you have to submit a proposal by June 24th, and the proposal has to be approved. See http://code.google.com/summerofcode.html It would be cool if the Wine project put together a list of

Re: Fix NtAccessCheck so it works with relative SECURITY_DESCRIPTORs

2005-05-31 Thread Evan Deaubl
It appears this is already committed, so my input is mostly moot, but it built and ran correctly. Thanks for cleaning up my patch. Evan On Monday 30 May 2005 11:51 pm, Robert Shearman wrote: Evan Deaubl wrote: ChangeLog: * Fix NtAccessCheck so it works with relative SECURITY_DESCRIPTORs

Re: Optionally map the unix filesystem instead of drive letters into the shell namespace

2005-05-31 Thread Michael Lin
Hi Michael, Never mind. In your last mail you said that you already implemented rename and new folder functionality. Are those restricted to shfldr_unixfs? Do you think those could be sent as a separate patch already? That would be sweet. Here it is, I have cleaned it up so it is only

Re: Google Summer of Code

2005-05-31 Thread Scott Ritchie
After talking in the chatroom setup by Google, here's what I was able to glean: 1) We don't need to form a formal mentoring organization as Google calls it right now, since someone from Google (by the name of Dan) has volunteered to process the Wine applications. That's how we got listed on the

Re: Google Summer of Code

2005-05-31 Thread Dimi Paun
On Tue, 2005-05-31 at 20:44 -0500, Jeremy White wrote: To be candid, I'm tempted to set the bar a bit higher than with some of the other student projects you've been working on (e.g. help Ivan get copy protection working); is that out of line? That may be a bit much. However, a perfect set of

Re: Google Summer of Code

2005-05-31 Thread Jeremy White
Scott Ritchie wrote: After talking in the chatroom setup by Google, here's what I was able to glean: 1) We don't need to form a formal mentoring organization as Google calls it right now, since someone from Google (by the name of Dan) has volunteered to process the Wine applications. That's

Re: Google Summer of Code

2005-05-31 Thread Dimi Paun
On Tue, 2005-05-31 at 22:07 -0500, Jeremy White wrote: Dimi, my issue is that I don't think we want to set the bar too low. I don't think an easy integration project is appropriate. Maybe I'm wrong, but I at least think it would be cool if these led to some very meaningful and truly useful

Re: Google Summer of Code

2005-05-31 Thread Mike McCormack
Dimi Paun wrote: And yes, I agree the bar shouldn't be too low. But on the integration page we have a number of cool, fun, not-all-that-easy projects that would be very good for wine to have: * http://wiki.winehq.org/KernelHandleSupport I doubt that a newbie could do that to anybody's

Re: Google Summer of Code

2005-05-31 Thread Dimi Paun
On Wed, 2005-06-01 at 13:02 +0900, Mike McCormack wrote: Or else, complete the integration with Gnome, so that we have a Gnome VFS library that can recreate the Windows menu heirachy, without having to resort to the wineshelllink hack. Good idea for the integration page, mind creating a page

Re: Google Summer of Code

2005-05-31 Thread Brian Vincent
On 5/31/05, Dimi Paun [EMAIL PROTECTED] wrote: Also, we can add stuff like:* jscript.dll reimplementation using the Mozilla JScript* A new DLL maybe? Along similar lines, Google's Picasa2 works really well with Wine. The main missing feature is MAPI stuff to email pictures. Jon, you worked on that