Re: RFC: Mark dylib/mach-o on Mac OS X

2013-08-29 Thread Alexandre Julliard
André Hentschel writes: > Am 29.08.2013 23:15, schrieb Alexandre Julliard: >> André Hentschel writes: >> >>> Am 29.08.2013 19:52, schrieb André Hentschel: Hi, thank you both for the comments, i'll see what i can do. >>> >>> How about that? >> >> I don't see the point at all. There's

Re: RFC: Mark dylib/mach-o on Mac OS X

2013-08-29 Thread André Hentschel
Am 29.08.2013 23:15, schrieb Alexandre Julliard: > André Hentschel writes: > >> Am 29.08.2013 19:52, schrieb André Hentschel: >>> Hi, >>> thank you both for the comments, i'll see what i can do. >> >> How about that? > > I don't see the point at all. There's no reason to add all that > complexit

Re: RFC: Mark dylib/mach-o on Mac OS X

2013-08-29 Thread Alexandre Julliard
André Hentschel writes: > Am 29.08.2013 19:52, schrieb André Hentschel: >> Hi, >> thank you both for the comments, i'll see what i can do. > > How about that? I don't see the point at all. There's no reason to add all that complexity for a purely cosmetic detail. -- Alexandre Julliard julli...

Re: RFC: Mark dylib/mach-o on Mac OS X

2013-08-29 Thread André Hentschel
Am 29.08.2013 22:46, schrieb Charles Davis: > > On Aug 29, 2013, at 2:35 PM, André Hentschel wrote: > >> Am 29.08.2013 19:52, schrieb André Hentschel: >>> Hi, >>> thank you both for the comments, i'll see what i can do. >> >> How about that? > Much better, but... >> >> diff --git a/programs/wined

Re: RFC: Mark dylib/mach-o on Mac OS X

2013-08-29 Thread Charles Davis
On Aug 29, 2013, at 2:35 PM, André Hentschel wrote: > Am 29.08.2013 19:52, schrieb André Hentschel: >> Hi, >> thank you both for the comments, i'll see what i can do. > > How about that? Much better, but... > > diff --git a/programs/winedbg/info.c b/programs/winedbg/info.c > index c0b86ba..0667

Re: RFC: Mark dylib/mach-o on Mac OS X

2013-08-29 Thread André Hentschel
Am 29.08.2013 19:52, schrieb André Hentschel: > Hi, > thank you both for the comments, i'll see what i can do. How about that? diff --git a/dlls/dbghelp/module.c b/dlls/dbghelp/module.c index 6bea436..ed1d9c0 100644 --- a/dlls/dbghelp/module.c +++ b/dlls/dbghelp/module.c @@ -33,6 +33,7 @@ WINE_

Re: RFC: Mark dylib/mach-o on Mac OS X

2013-08-29 Thread André Hentschel
Hi, thank you both for the comments, i'll see what i can do.

Re: RFC: Mark dylib/mach-o on Mac OS X

2013-08-27 Thread Charles Davis
On Aug 27, 2013, at 3:08 PM, André Hentschel wrote: > Hi, > at [1] i noticed that dylibs are printed as PEs. > This intents to fix that, but i have no Mac, could someone please review/test? > > [1] > http://test.winehq.org/data/8ef3a142263e6db11f1514f77b3de84c8b08d7a0/mac_fg-snow-macdrv/advapi3

Re: RFC: Mark dylib/mach-o on Mac OS X

2013-08-27 Thread Ken Thomases
Hi, On Aug 27, 2013, at 4:08 PM, André Hentschel wrote: > @@ -94,6 +95,9 @@ static void module_fill_module(const WCHAR* in, WCHAR* out, > size_t size) > if (len > 3 && !strcmpiW(&out[len - 3], S_DotSoW) && > (l = match_ext(out, len - 3))) > strcpyW(&out[len - l -

RFC: Mark dylib/mach-o on Mac OS X

2013-08-27 Thread André Hentschel
Hi, at [1] i noticed that dylibs are printed as PEs. This intents to fix that, but i have no Mac, could someone please review/test? [1] http://test.winehq.org/data/8ef3a142263e6db11f1514f77b3de84c8b08d7a0/mac_fg-snow-macdrv/advapi32:cred.html diff --git a/dlls/dbghelp/module.c b/dlls/dbghelp/mod