IDebugClient::GetOutputLinePrefix method (dbgeng.h)

Gets the prefix used for multiple lines of output.

Syntax

HRESULT GetOutputLinePrefix(
  [out]           PSTR   Buffer,
  [in]            ULONG  BufferSize,
  [out, optional] PULONG PrefixSize
);

Parameters

[out] Buffer

A pointer to the buffer to get the prefix.

[in] BufferSize

The size of the buffer.

[out, optional] PrefixSize

A pointer to the size of the buffer.

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. A prefix can be added to each line.

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