vote up 0 vote down star

What is the standard macro used to write text to the output window in Win32 (outside MFC)? I am looking for something which the pre-processor conditionally excludes from the release build.

(This might sound like SO sacrilege but I've merely forgotten this one and there was too much noise on Google. We are on the verge of handcrafting our own.)

flag

50% accept rate

3 Answers

vote up 2 vote down

I don't believe there's a standard, best to roll your own.

However, you might want to consider OutputDebugString(char*). It'll send output to the debug channel.

link|flag
OutputDebugString calls would not be eliminated by preprocessor. – ssg Mar 5 at 8:11
Yes, but you could use OutputDebugString() in the macro... – Steve Lacey Mar 5 at 18:08
vote up 1 vote down

There is a trace macro for this, which is a debug-only printf-style output function. Besides that, you might want to give the _RPT macros a try.

link|flag
TRACE is MFC only. But thanks for the RPT macros. – Agnel Kurian Mar 5 at 8:20
Damn, missed the "non-MFC" solution :D You might want to take a look at how the macro is implemented though, maybe it does not use MFC internally at all. – Anteru Mar 5 at 8:21
vote up 0 vote down

Maybe you're thinking of ATLTRACE? Not quite "the standard macro", but pretty close, I guess.

link|flag
Does it work with plain Win32? – Agnel Kurian Mar 5 at 8:17
Sure. I just created a Win32 console project, included atlbase.h, and the ATLTRACE() output is nicely appearing in the output window. – Arnout Mar 5 at 9:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.