IDebugClient::SetOutputLinePrefix method (dbgeng.h)

Sets a prefix for multiple lines of output.

Syntax

HRESULT SetOutputLinePrefix(
  [in, optional] PCSTR Prefix
);

Parameters

[in, optional] Prefix

A pointer to the prefix value.

Return value

This method may also return error values. See Return Values for more details.

Return code Description
S_OK
The method was successful.

Remarks

Some of the engine commands produce multiple lines of output. This function sets a prefix that the engine adds to each line. This function allows the caller to control indentation or identifying marks.

The prefix value is not a general setting for any output that contains a newline. Methods which use the line prefix are marked in their documentation.

Requirements

Requirement Value
Target Platform Windows
Header dbgeng.h (include Dbgeng.h)

See also

IDebugClient