Re: wine/dlls/comctl32 rebar.c

2004-03-12 Thread Robert Shearman
On Fri, 2004-03-12 at 20:23, Alexandre Julliard wrote: > ChangeSet ID: 11458 > CVSROOT: /opt/cvs-commit > Module name: wine > Changes by: [EMAIL PROTECTED] 2004/03/12 14:23:39 > > Modified files: > dlls/comctl32 : rebar.c > > Log message: > Mike McCormack <[EMAIL PROTE

Re: Add debug SnoopFromInclude/SnoopFromExclude options

2004-03-12 Thread Alexandre Julliard
Mike Hearn <[EMAIL PROTECTED]> writes: > +if (!check_snoop_from_module(name)) { > + TRACE_(snoop)("skipping snoop for %s\n", name); > + return; > +} This will disable snoop for calls into that dll, this is not what FromInclude/Exclude should do, it should check the caller modu

Re: wine/ misc/options.c documentation/wine.man.in ...

2004-03-12 Thread Mike Hearn
On Fri, 12 Mar 2004 14:53:18 -0500, Dimitrie O. Paun wrote: >> Ah, holy shell wars :-) > yes, finally!!! Bah, just don your toga and use vino dammit :) problem solved!

Re: In Vino Veritas!

2004-03-12 Thread Shachar Shemesh
Mike Hearn wrote: [1] OK I admit, I wrote this script for myself before I read Alexandres reply. Obviously this is a developer only script, it's not intended to be a part of Wine itself. Or, as it appears, part of wine-devel. Or is there some other reason you did not attach it? -- Shachar She

Re: wine/ misc/options.c documentation/wine.man.in ...

2004-03-12 Thread Dimitrie O. Paun
On Fri, 12 Mar 2004, Uwe Bonnes wrote: > Ah, holy shell wars :-) yes, finally!!! > An example is worth a lot of explanations. The vanishing wine command line > option nerved me a long time now. Only today I looked up what can be done to > start wine with changed variables for that command. For c

Re: wine/ misc/options.c documentation/wine.man.in ...

2004-03-12 Thread Uwe Bonnes
> "Dimitrie" == Dimitrie O Paun <[EMAIL PROTECTED]> writes: Dimitrie> On Fri, 12 Mar 2004, Uwe Bonnes wrote: WINEDEBUG=+relay wine Dimitrie> yourprog.exe >> It only works with selected shells... Dimitrie> s/selected/standard/ Dimitrie> If you have the bad inspiration to

Re: In Vino Veritas!

2004-03-12 Thread Mike Hearn
Of course, attaching the file first might be a good plan :) #!/bin/bash # A wine wrapper script. In Vino Veritas! # v1.0 (C) Mike Hearn <[EMAIL PROTECTED]> # Licensed under the GPL for a in $@; do if [[ "${a:0:1}" == "+" ]] || [[ "${a:0:1}" == "-" ]]; then if [[ "$WINEDEBUG" != "" ]]

Re: wine/ misc/options.c documentation/wine.man.in ...

2004-03-12 Thread Dimitrie O. Paun
On Fri, 12 Mar 2004, Uwe Bonnes wrote: > Dimitrie> WINEDEBUG=+relay wine yourprog.exe > > It only works with selected shells... s/selected/standard/ If you have the bad inspiration to us csh instead, I think you should know how to translate standard shell idions into your own. It's just stu

Re: wine/ misc/options.c documentation/wine.man.in ...

2004-03-12 Thread Uwe Bonnes
> "Dimitrie" == Dimitrie O Paun <[EMAIL PROTECTED]> writes: Dimitrie> On Fri, 12 Mar 2004, Uwe Bonnes wrote: >> Changelog: documentation/wine.man.in Mention the env command to start >> a command with modified variables Dimitrie> Why do you need env(1)? What's wrong with:

In Vino Veritas!

2004-03-12 Thread Mike Hearn
Hi guys, So, just to wind up Alexandre [1], I wrote the following script. If you enjoy, as I do, sugar and all things sweet, you may like it. It probably screws up parameter passing entirely, but most win32 apps don't use them so no problem! Usage: vino +snoop,-imm foobar.exe vino ole32,oleaut3

Re: wine/ misc/options.c documentation/wine.man.in ...

2004-03-12 Thread Dimitrie O. Paun
On Fri, 12 Mar 2004, Uwe Bonnes wrote: > Changelog: > documentation/wine.man.in > Mention the env command to start a command with modified variables Why do you need env(1)? What's wrong with: WINEDEBUG=+relay wine yourprog.exe -- Dimi.

Re: wine/ misc/options.c documentation/wine.man.in ...

2004-03-12 Thread Uwe Bonnes
> "Alexandre" == Alexandre Julliard <[EMAIL PROTECTED]> writes: Alexandre> Uwe Bonnes <[EMAIL PROTECTED]> writes: >> Would a patch extending the wrapper to understand all those old but >> handy options ( --debugmsg , --dll) be acceptable? Alexandre> No, I think it's better to

Re: wine/ misc/options.c documentation/wine.man.in ...

2004-03-12 Thread Alexandre Julliard
Uwe Bonnes <[EMAIL PROTECTED]> writes: > Would a patch extending the wrapper to understand all those old but handy > options ( --debugmsg , --dll) be acceptable? No, I think it's better to start using the new mechanism. Otherwise there will be even more confusion about when you can use the option

Re: Working otu what is happening in a network dependent app

2004-03-12 Thread Mike McCormack
Peter Riocreux wrote: Is there a noddy Wine app that will just print out all the environment it sees to I can be *absolutely* sure that my app is seeing it? run "wine wcmd", then type "set" at the prompt. 2. Is there a specific set of debug messages I can turn on to see (a) the app looki

RE: DM_SETDEFID problems

2004-03-12 Thread Robert Shearman
Santosh Siddheshwar wrote: > > Hi Rob, > Maybe I should have been more clear in my question. > Is DM_SETDEFID message processing restricted to > dialogs created using dialog template? Is there > any scenario where the DIALOGINFO structure could be > NULL thus preventing the message from being > ef

Re: Willing to help with animated icons/cursors

2004-03-12 Thread Mike Hearn
On Fri, 12 Mar 2004 09:22:47 +0900, Mike McCormack wrote: > I've done a little work on animated icons. I've investigated what is > necessary to make them work, and written a short plain C program that > can parse an animated icon file and extract the icons in it to .xpm > files, and a very shor

DM_SETDEFID problems

2004-03-12 Thread Santosh Siddheshwar
Hi Rob, Maybe I should have been more clear in my question. Is DM_SETDEFID message processing restricted to dialogs created using dialog template? Is there any scenario where the DIALOGINFO structure could be NULL thus preventing the message from being effectively handled? Regards Santosh S

Re: Application database

2004-03-12 Thread David Miller
I've tried to volunteer before, but no one ever answered. If more help is needed I volunteer again. :) - So many Right-wing Christians. So few lions. - Original Message - From: "Jeremy Newman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent:

Working otu what is happening in a network dependent app

2004-03-12 Thread Peter Riocreux
I am trying to see if I can work out why an app that contacts a licensing daemon, doesn't. I am inexperienced at Wine debug stuff, so point me at docs if that is appropriate. 1. The host and port for the daemon are passed through an environment variable. I am *definitely* exporting this. Is th

Re: Re: Application database

2004-03-12 Thread chmorgan
Can you add me as a maintainer of the appdb as well? I'm often helping people in irc so I deal a lot with people trying to run all kinds of different apps, would be useful to start filling in some information on them so we have some kind of record of how well they run under wine. Thanks, Chris

Re: Application database

2004-03-12 Thread Paul van Schayck
Jeremy, On Friday 12 March 2004 14:00, Jeremy Newman wrote: > I'm also curious to find out if I opened up the appdb code base, (i.e > made a cvs module for it), if anyone would be interested in improving > it. I haven't patched a single line of code in it for over a year. > > Honestly, I've been w

RE: DM_SETDEFID problems

2004-03-12 Thread Robert Shearman
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Behalf Of Santosh Siddheshwar > Sent: 12 March 2004 10:23 > To: [EMAIL PROTECTED] > Subject: DM_SETDEFID problems > > > Hi All, > Does anyone know if WINE supports sending DM_SETDEFID to non-dialog > windows? No. To quote MSDN, "This messag

Re: Application database

2004-03-12 Thread Jeremy Newman
Based on the size of the submission queue right now, it does not look like anyone has approved an app for awhile now. We may need a few more volunteers to maintain the appdb. I'm also curious to find out if I opened up the appdb code base, (i.e made a cvs module for it), if anyone would be intere

DM_SETDEFID problems

2004-03-12 Thread Santosh Siddheshwar
Hi All, Does anyone know if WINE supports sending DM_SETDEFID to non-dialog windows? Regards Santosh S * Disclaimer: The information in this e-mail and any attachments is confidential / privileged. It is intended solely for the a

Re: 3/4 patches for compilation of ATL & MFC

2004-03-12 Thread Boaz Harrosh
Alexandre Julliard wrote: > >The i64 suffix is not portable. > oops the wrong file. I do need it with "LL" (real 64bit constant). If you want it protected by an ifdef. Is there an long long ifdef done by configure? .. OK I'll look for it and send a fix. >This is wrong, we need a proper math.h. >

Re: 3/4 patches for compilation of ATL & MFC

2004-03-12 Thread Hans Leidekker
On Thursday 11 March 2004 20:44, Alexandre Julliard wrote: > > --- include/msvcrt/math.h 2 Sep 2003 00:58:21 - 1.1 > > +++ include/msvcrt/math.h 10 Mar 2004 08:36:47 - > > @@ -1,12 +1,14 @@ > > -#ifndef __WINE_MATH_H > > -#define __WINE_MATH_H > > > > -#ifdef __cplusplus > > -ext

Re: wine/ misc/options.c documentation/wine.man.in ...

2004-03-12 Thread Uwe Bonnes
> "Alexandre" == Alexandre Julliard <[EMAIL PROTECTED]> writes: ... Alexandre> ... Start deprecating the --debugmsg option. Would a patch extending the wrapper to understand all those old but handy options ( --debugmsg , --dll) be acceptable? -- Uwe Bonnes[EMAIL PROTECT