Causes the given string to be displayed by the debugger integrated development environment (IDE).
HRESULT DebugOutput( LPCOLESTR pstr );
- pstr
[in] String to display in the debugger.
The method returns an HRESULT. Possible values include, but are not limited to, those in the following table.
Value | Description |
---|---|
S_OK | The method succeeded. |
This method allows a language engine to implement language-specific debugging output support. The string is typically displayed in the debugger's output window.
This method causes IApplicationDebugger::onDebugOutput to be called.