Method

PurpleCircularBufferget_output

since: 3.0

Declaration [src]

const gchar*
purple_circular_buffer_get_output (
  PurpleCircularBuffer* buffer
)

Description [src]

Returns the output pointer of the buffer, where unread data is available. Use purple_circular_buffer_get_max_read() to determine the number of contiguous bytes that can be read from this output. After reading the data, call purple_circular_buffer_mark_read() to mark the retrieved data as read.

Available since: 3.0

Return value

Type: const gchar*

The output pointer for the buffer.

The data is owned by the instance.
The value is a NUL terminated UTF-8 string.