Re: Macro names instead of numbers in logs

2010-09-12 Thread Florian Köberle
On 09/11/2010 11:34 PM, Dylan Smith wrote: 2010/9/7 Mariusz Pluciński vsha...@gmail.com mailto:vsha...@gmail.com In my opinion it would be good to make it available in similar way, as functions like debugstr_guid, which are defined in include/wine/debug.h Messages' names

Re: Macro names instead of numbers in logs

2010-09-12 Thread Marcus Meissner
On Sun, Sep 12, 2010 at 10:38:09AM +0200, Florian Köberle wrote: On 09/11/2010 11:34 PM, Dylan Smith wrote: 2010/9/7 Mariusz Pluciński vsha...@gmail.com mailto:vsha...@gmail.com In my opinion it would be good to make it available in similar way, as functions like debugstr_guid,

[RFC PATCH 0/4] Macro names instead of numbers in logs

2010-09-11 Thread Florian Köberle
Hello this patches increases the readability of debug channels logs and test traces by displaying the window message names instead of their numbers. I haven't put the new functionality in include/wine/debug.h because it's mutally exclusive with include/wine/test.h. I have put it in a new

Re: [RFC PATCH 0/4] Macro names instead of numbers in logs

2010-09-11 Thread Jerome Leclanche
You forgot to attach a patch. J. Leclanche On Sat, Sep 11, 2010 at 10:57 AM, Florian Köberle flor...@fkoeberle.de wrote:  Hello this patches increases the readability of debug channels logs and test traces by displaying the window message names instead of their numbers. I haven't put the

Re: Macro names instead of numbers in logs

2010-09-11 Thread Dylan Smith
2010/9/7 Mariusz Pluciński vsha...@gmail.com In my opinion it would be good to make it available in similar way, as functions like debugstr_guid, which are defined in include/wine/debug.h Messages' names are declared as an array MessageTypeNames in spy.c . Maybe it would be enough to copy it

Macro names instead of numbers in logs

2010-09-07 Thread Florian Köberle
Hello when running a program using wine it's possible to log +message to get informed about all the messages which get sent. This debug channel displays the macro names like WM_NOTIFY instead of numbers. The most other debug channels and the regression tests however display numbers. Functions

Re: Macro names instead of numbers in logs

2010-09-07 Thread Mariusz Pluciński
W dniu 07.09.2010 12:09, Florian Köberle pisze: Hello when running a program using wine it's possible to log +message to get informed about all the messages which get sent. This debug channel displays the macro names like WM_NOTIFY instead of numbers. The most other debug channels and the