IDebugApplication::DebugOutput
Causes the given string to be displayed by the debugger integrated development environment (IDE).
Syntax
HRESULT DebugOutput(
LPCOLESTR pstr
);
Parameters
pstr
[in] String to display in the debugger.
Return Value
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. |
Remarks
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.
See also
IDebugApplication Interface
IApplicationDebugger::onDebugOutput