Share via


DbgOutString

 
Microsoft DirectShow 9.0

DbgOutString

The DbgOutString macro sends a string to the debug output location. Ignored in retail builds.

Syntax

  void DbgOutString(
    LPCTSTR psz
);

Parameters

psz

String to output.

Remarks

In debug builds, this function always outputs the string, regardless of the current debug output levels. For finer control over the output, use the DbgLog macro.

Example

DbgOutString("Creating the filter graph...\n"); 

Requirements

**  Header:** Declared in Wxdebug.h; include Streams.h.

**  Library:** Use Strmbase.lib (retail builds) or Strmbasd.lib (debug builds).

See Also