http://bugs.winehq.org/show_bug.cgi?id=8936
--- Comment #25 from Alex Balut alexandru.balut@gmail.com 2007-12-22 02:42:07 --- (In reply to comment #24)
Just noticed an example posted at http://winehq.org/site/docs/winedev-guide/dbg-notes. Is that one safe to use?
It seems so, it supports strings of max 200 chars at the moment, have a look in libs/wine/debug.c. (I would not use it, though.)
You could also make this change in DUMPCONTEXT, instead of doing: sprintf(s, "...", v) TRACE("context: %s\n", s)
it's better to use just: TRACE("context: ...\n", v)