Re: Martin Fuchs : shell32: SHELL32_GetItemAttributes()

2006-02-18 Thread Rein Klazes
On Sat, 18 Feb 2006 15:18:00 +0100, you wrote: >Hello, > >> This patch is giving me trouble: > >does the following patch help to solve your problem? > Yup, it works fine now. Thanks, Rein.

Re: Possibly crazy idea to deal with memory layout problems once and for all

2006-02-18 Thread Mike McCormack
Troy Rollo wrote: It has a few problems though. Firstly, we'd miss mmaps done with system calls. Yes, but how many apps actually do this? We wouldn't care about applications, only libraries that use their own mmap system call (eg. Wine). Secondly, we'd have to make assumptions about wha

Re: add configure options to control support of misc packages

2006-02-18 Thread Mike McCormack
Mike Frysinger wrote: the point of the patch is to allow people to have finer control over the featureset of wine ... for example, you wish to build on one machine but deploy on others, you cannot be sure what features wine will require if the build env has many more packages than the target

Re: Possibly crazy idea to deal with memory layout problems once and for all

2006-02-18 Thread Troy Rollo
On Saturday 18 February 2006 22:47, Mike McCormack wrote: > It has a few problems though. Firstly, we'd miss mmaps done with system > calls. Yes, but how many apps actually do this? > Secondly, we'd have to make assumptions about what areas of > memory the kernel would let us map, and what are

Re: NTDLL/loader.c: Remove spaces at end of name in import_dll

2006-02-18 Thread Vitaliy Margolen
Saturday, February 18, 2006, 12:29:04 PM, Uwe Bonnes wrote: >> "Vitaliy" == Vitaliy Margolen <[EMAIL PROTECTED]> writes: > Vitaliy> Saturday, February 18, 2006, 11:16:10 AM, Uwe Bonnes wrote: > >> Changelog: ntdll/loader.c import_dll() Remove spaces at end of name > >> retrieved wi

Re: NTDLL/loader.c: Remove spaces at end of name in import_dll

2006-02-18 Thread Uwe Bonnes
> "Vitaliy" == Vitaliy Margolen <[EMAIL PROTECTED]> writes: Vitaliy> Saturday, February 18, 2006, 11:16:10 AM, Uwe Bonnes wrote: >> Changelog: ntdll/loader.c import_dll() Remove spaces at end of name >> retrieved with get_rva( module, descr-> Name ) >> +/* Overwrite spaces

slackware download

2006-02-18 Thread hippy hip
hiya- sorry if this is the wrong place to post this - wasn't sure where to send it- anyway- if you go to your webpage- click on 'download' -then go to slackware to get the install file for slack... you get a error page telling you the servers down. this has been going on for the last 3 days now. ha

Re: NTDLL/loader.c: Remove spaces at end of name in import_dll

2006-02-18 Thread Vitaliy Margolen
Saturday, February 18, 2006, 11:16:10 AM, Uwe Bonnes wrote: > Changelog: > ntdll/loader.c import_dll() > Remove spaces at end of name retrieved with get_rva( module, > descr->>Name ) > +/* Overwrite spaces at end of buffer with NULL */ > +inline static void skip_spaces(WCHAR *buffer, size_t len)

Re: D3D8 Texture -> WineD3D

2006-02-18 Thread Roderick Colenbrander
I would have preferred to do the d3d8 move in one go too (one 12000 line patch) but Alexandre didn't like the idea. I'm now trying to cut the patch in small pieces. The surface and texture part were 'easy' but now it is becoming more complicated with the stateblock and device. Roderick On Satu

Re: D3D8 Texture -> WineD3D

2006-02-18 Thread Stefan Dösinger
> This patch (based on Oliver Stieber his d3d8 code) moves d3d8's texturing > code over to WineD3D. The patch adds new datatypes, replaces a few texture > creation calls with wined3d code and updates code to work with the new > datatypes. Unfortunately the patch is quite big because there's one tex

Re: Martin Fuchs : shell32: SHELL32_GetItemAttributes()

2006-02-18 Thread Martin Fuchs
Hello, > This patch is giving me trouble: does the following patch help to solve your problem? Regards, Martin Index: shlfolder.c === RCS file: /home/wine/wine/dlls/shell32/shlfolder.c,v retrieving revision 1.110 diff -u -p -d

Re: add configure options to control support of misc packages

2006-02-18 Thread Mike McCormack
Mike Frysinger wrote: this patch adds a bunch of --without-FOO options to configure ... some are very simple (like the sane/xml checks) while some others are slightly more involved What's the point of crippling Wine like this? Mike

Re: menu drawing fixes -- RESENT

2006-02-18 Thread Alexandre Julliard
Rein Klazes <[EMAIL PROTECTED]> writes: > Updating drawing of menu items with bitmaps and/or strings: > - implemented MNS_NOCHECK menu style; > - support HBMMENU_CALLBACK bitmaps in menu bars; > - replaced some #defined constants by values calculated from windows > metrics; > - added a lot of test

Re: Martin Fuchs : shell32: SHELL32_GetItemAttributes()

2006-02-18 Thread Rein Klazes
Hallo Martin. This patch is giving me trouble: >Author: Martin Fuchs <[EMAIL PROTECTED]> >Date: Sat Feb 11 12:16:56 2006 +0100 > >shell32: SHELL32_GetItemAttributes() >- correct documentation which incorrectly claimed not to set any > attribute bits >- retrieve file attributes using SHGetPathF

Re: Possibly crazy idea to deal with memory layout problems once and for all

2006-02-18 Thread Mike McCormack
Dan Kegel wrote: You can override mmap() in wine by just changing all the places it's called. (Having control over the source is a wonderful thing.) But if you want mmap to behave truly differently, you'd probably need to change the kernel. You can do that easily after glibc has loaded, but

re: Possibly crazy idea to deal with memory layout problems once and for all

2006-02-18 Thread Dan Kegel
> it seemed that the only way to resolve it would be to > get in between the application and any libraries, and the kernel. > > If wine_preloader were extended to have its own implementation of all the > friends of mmap(), and to have its own implementation of the dynamic linker, > then in principl